import React, { ReactNode } from "react"; import { XHComponentCommonProps } from "../../types"; export declare type DialogProps = { header?: string | ReactNode; content: string | ReactNode; footer?: string | ReactNode; visible: boolean; } & XHComponentCommonProps; export declare type DialogRef = { close: () => void; }; declare const DialogCom: React.ForwardRefExoticComponent<{ header?: string | ReactNode; content: string | ReactNode; footer?: string | ReactNode; visible: boolean; } & XHComponentCommonProps & React.RefAttributes>; export default DialogCom;