import './global-dialog.css'; import { PropsWithChildren, ReactNode, CSSProperties } from 'react'; export interface GlobalDialogProps { visible: boolean; afterClose?: () => void; onClose?: () => void; width?: number; header?: ReactNode; headerWrapperStyle?: CSSProperties; } export declare const FcrGlobalDialog: (props: PropsWithChildren) => import("react").JSX.Element;