/// export interface BodyProps { /** * @single Body Title (any) - Body Content (any) * @composite Body Title (any) - Body Content (any[]) */ type?: 'single' | 'multiple'; title?: any; content?: any | any[]; } export interface HelpProps { /** * If you customize the icon, it will be displayed with the corresponding icon. * * @default */ titleIcon?: React.ReactNode; /** * If you customize the text, it will be displayed with the corresponding text. */ titleText?: string; /** * If you customize the body, it will be displayed with the corresponding body. */ body?: BodyProps[]; } declare const HelpDialog: ({ open, setOpen, onClose, props }: { open: boolean; setOpen?: ((open: boolean) => void) | undefined; onClose?: (() => void) | undefined; props?: HelpProps | undefined; }) => import("react/jsx-runtime").JSX.Element; export default HelpDialog; //# sourceMappingURL=HelpDialog.d.ts.map