export interface DialogState { id: string | null; name: string | null; isOpen: boolean; openDialog: (id: string, name: string) => void; onClose: () => void; } interface UseDialogProps { onReset?: () => void; } export declare const useDialog: (props?: UseDialogProps) => DialogState; export {}; //# sourceMappingURL=useDialog.d.ts.map