import { type DefaultProps } from '../config'; export interface EmptyProps { description?: string; size?: 'small' | 'medium'; iconSize?: string | number; } export declare const defaultEmptyProps: DefaultProps; export interface EmptySlots { default?(props: Record): any; icon?(props: Record): any; description?(props: Record): any; }