1234567891011121314151617181920 |
- import { IBaseProps } from '../_util/base';
- export interface IEmptyProps extends IBaseProps {
-
- title: string;
-
- message: string;
-
- image: string;
- }
- export declare const EmptyDefaultProps: Partial<IEmptyProps>;
- export declare const EmptyFunctionalProps: IEmptyProps;
|