import type { TDialogProps } from '../components/TDialog/TDialog.types'; interface DialogOptions extends TDialogProps { onCancel?: () => void; onConfirm?: () => void; } export declare const useDialog: () => { open: ({ onCancel, onConfirm, ...props }: DialogOptions) => void; }; export {}; //# sourceMappingURL=dialog.d.ts.map