export type Variant = 'add-file' | 'add-photo' | 'empty-folder' | 'empty-list' | 'list' | 'no-content' | 'search-list' | 'search' | 'payment-done' | 'period-payment' | 'error404';
export interface EmptyState {
    id: string;
    title: string;
    subtitle: string;
    variant: Variant;
}
