123456789101112131415161718192021222324 |
- import { IBaseProps } from '../_util/base';
- export interface IContainerProps extends IBaseProps {
-
- title?: string;
-
- headerInBox?: boolean;
-
- className?: string;
-
- style?: string;
- }
- export declare const ContainerDefaultProps: IContainerProps;
|