declare const DEFAULT_RECOVERY_CODE_COUNT = 8; declare function normalizeRecoveryCode(code: string): string; declare function formatRecoveryCode(normalized: string): string; declare function generateRecoveryCodes(count?: number): string[]; declare function hashRecoveryCode(code: string): string; declare function recoveryCodeMatches(code: string, hash: string): boolean; export { DEFAULT_RECOVERY_CODE_COUNT, formatRecoveryCode, generateRecoveryCodes, hashRecoveryCode, normalizeRecoveryCode, recoveryCodeMatches, };