Files

21 lines
448 B
TypeScript
Raw Permalink Normal View History

2025-08-18 09:11:51 +08:00
import { IBaseProps } from '../_util/base';
/**
* @description
*/
export interface IEmptyProps extends IBaseProps {
/**
* @description
*/
title: string;
/**
* @description
*/
message: string;
/**
* @description
*/
image: string;
}
export declare const EmptyDefaultProps: Partial<IEmptyProps>;
export declare const EmptyFunctionalProps: IEmptyProps;