import { EmptyProps } from 'antd';
import { FC } from 'react';
import { EMPTY, TComponentProps } from '../../Types';
interface IChildren extends Omit<EmptyProps, 'children'> {
    children?: TComponentProps[];
}
export interface IEmpty {
    ctype: typeof EMPTY;
    props: IChildren;
}
declare const Empty: FC<IEmpty>;
export default Empty;
