import { default as React, FunctionComponent, ReactNode } from 'react'; import { BasicComponent } from '../../utils/typings'; import { EmptyAction } from './index'; export interface EmptyProps extends BasicComponent { image?: ReactNode; imageSize: number | string; title: ReactNode; description: ReactNode; size: 'small' | 'base'; status: 'empty' | 'error' | 'network'; actions: Array; } export declare const Empty: FunctionComponent & Omit, 'title'>>;