import { IRequired2FAModel } from "../type";
export declare const useOtpListener: () => {
    isOtpModalVisible: boolean;
    handleOtpSubmit: (otp: string, secret?: string, type?: string) => Promise<void>;
    handleCloseModal: () => void;
    otpData: IRequired2FAModel | undefined;
};
