import React from "react"; export declare function Dialog(props: DialogProps): JSX.Element; export interface DialogProps { visible: boolean; dismiss: () => void; style?: any; title?: string; titleStyle?: any; contentStyle?: any; cancelStyle?: any; okStyle?: any; content?: string; children?: React.ReactNode; okText?: string; cancelText?: string; onOk?: () => void; onCancel?: () => void; touchOutsideCancellable?: boolean; }