/// <reference types="react" />
type UseConfirmationDialogType = (message: string, onConfirm: () => void) => [() => void, () => JSX.Element | null];
declare const useConfirmationDialog: UseConfirmationDialogType;
export default useConfirmationDialog;
