import React from 'react'; import { DefaultProps } from '../theme'; export interface EmptyProps extends DefaultProps { /** title of Empty */ title?: React.ReactNode | string; /** description of Empty */ description?: React.ReactNode | string; /** icon element of Empty */ image?: React.ReactNode; /** className of image */ imageClassName?: string; /** style of image */ imageStyle?: React.CSSProperties; } export declare const Empty: import("../utils/types").ComponentWithAs<"div", EmptyProps>; //# sourceMappingURL=Empty.d.ts.map