import { default as React, FunctionComponent, HTMLAttributes } from 'react'; import { OverlayProps } from '../overlay/overlay'; interface DialogWrapProps extends OverlayProps { visible: boolean; overlay: boolean; overlayStyle: React.CSSProperties; overlayClassName: string; footer: React.ReactNode; close: React.ReactNode; onCancel: () => void; onClose: () => void; onOverlayClick: (e: MouseEvent) => boolean | void; } export declare const DialogWrap: FunctionComponent & Omit, 'title' | 'content'>>; export {};