import { ReactElement } from 'react'; import { CommonProps } from '../common'; export interface EmptyProps extends CommonProps { /** * Extra action buttons. */ extra?: ReactElement; /** * Empty image source URL. */ imageSrc?: string; /** * Size of the Empty. */ size?: 'small' | 'medium'; /** * Text under image. */ text: string | ReactElement; } declare const Empty: ({ imageSrc, text, extra, size, id, className, style, sx, "data-test-id": dataTestId, }: EmptyProps) => ReactElement; export default Empty;