import { SkeletonInputProps } from "antd/lib/skeleton/Input"; import { ReactNode } from "react"; export interface IPlaceholderProps { /** * Data being check; must be truthy to render placeholder's content. */ data?: TData; /** * Children takes data (when available) and should render it's content. */ children?: (data: TData) => ReactNode; /** * Optional custom placeholder; defaults to Atnd Skeleton Input https://ant.design/components/skeleton/. */ placeholder?: () => ReactNode; /** * If needed, customize Antd Skeleton props. */ skeleton?: SkeletonInputProps; } export declare const Placeholder: ({ data, children, skeleton, placeholder, }: IPlaceholderProps) => JSX.Element;