interface EmptyPageProps {
    message?: string;
    actionLabel?: string;
    onActionClick?: () => void;
}
declare const EmptyPage: React.FC<EmptyPageProps>;
export default EmptyPage;
