export interface IUseConfirmReturn { message?: string; confirm: (opts: { message: string; }) => Promise; handleClose: () => void; handleConfirm: () => void; handleAbort: () => void; } export declare const useConfirm: () => IUseConfirmReturn;