/// declare type EmptyProps = { title: string; description: string; actionText?: string; action?: () => void; }; export declare function Empty({ title, description, actionText, action, }: EmptyProps): JSX.Element; export {};