import { UnionOmit } from '@co-hooks/util';
import React, { HTMLAttributes } from 'react';
export interface IEmpty {
    icon?: React.ReactNode;
    content?: React.ReactNode;
    children?: React.ReactNode;
}
export declare type IEmptyProps = UnionOmit<IEmpty, HTMLAttributes<HTMLDivElement>>;
export declare function Empty(props: IEmptyProps): JSX.Element;
