import { type ButtonProps } from "../buttons/Button";
export type EmptyProps = {
    Icon?: any;
    title?: string;
    description?: string;
    primary?: ButtonProps;
    secondary?: ButtonProps;
    className?: string;
    children?: React.ReactNode;
};
export declare const Empty: React.FC<EmptyProps>;
