import type { EmptyProps } from 'antd/es/empty';
export interface IBaseEmptyProps {
    description?: EmptyProps['description'];
    image?: EmptyProps['image'];
    imageStyle?: EmptyProps['imageStyle'];
    className?: EmptyProps['className'];
    style?: EmptyProps['style'];
    showImage?: boolean;
    children?: EmptyProps['children'];
    locale: 'ru' | 'en';
}
