type TwoFactorChallengesSendEmailCode = { challengeId: string; }; export declare const isTwoFactorChallengesSendEmailCodeParamsPOST: import("ajv").ValidateFunction; type TwoFactorChallengesVerifyChallenge = { challengeId: string; code: string; }; export declare const isTwoFactorChallengesVerifyChallengeParamsPOST: import("ajv").ValidateFunction; export type TwoFactorChallengesEndpoints = { '/v1/twoFactorChallenges.sendEmailCode': { POST: (params: TwoFactorChallengesSendEmailCode) => void; }; '/v1/twoFactorChallenges.verifyChallenge': { POST: (params: TwoFactorChallengesVerifyChallenge) => { loginToken: string; userId: string; }; }; }; export {}; //# sourceMappingURL=twoFactorChallenges.d.ts.map