import * as React from "react"; export interface EmptyProps { /** style object to control wrapper appearance */ style?: React.CSSProperties; /** style object to control image appearance */ imageStyle?: React.CSSProperties; /** custom image to render */ image?: React.ReactNode; /** Really is the title to show under the image */ description?: React.ReactNode; /** More text and words go here */ children?: React.ReactNode; } interface EmptyType extends React.FC { PRESENTED_IMAGE_DEFAULT: React.ReactNode; PRESENTED_IMAGE_SIMPLE: React.ReactNode; } export declare const Description: import("styled-components").StyledComponent<"p", any, {}, never>; export declare const Footer: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const Empty: EmptyType; export default Empty;