interface DialogOptions { title?: string; desc?: string; cancelText?: string; okText?: string; onCancel?: () => void; onOk?: () => void; } export declare function dialog(options: DialogOptions): () => void; export {};