import { ListProps } from "antd"; import { FC, ReactNode } from "react"; export interface IPreviewProps extends Partial, "children">> { translation?: string; hideEmpty?: boolean; children: { [index in string]: ReactNode; }; } export declare const Preview: FC;