import { FC } from 'react'; interface EmptyStateProps { /** The message to render for the empty state. */ message?: string; /** Text for the button to render, required to render a button. */ buttonText?: string; /** Handler when the button is clicked, required to render a button. */ onButtonClick?: () => void; /** Subtitle to render for the empty state. */ subtitle?: string; } export declare const EmptyState: FC; export {};