import * as React from 'react';
export interface Props {
    frame?: boolean;
    title?: string;
    emoji?: string;
    illustration?: React.ReactNode;
    small?: boolean;
    children?: React.ReactNode;
}
export declare const EmptyState: React.FC<Props>;
