import * as jose from "jose";
/** This object represents the encrypted copy of the account vault
 * from LetsMFA. This object must be stored by the Service Provider
 * associated with the user account.  */
export interface AccountVault {
    sub: string;
    domain: string;
    account: jose.FlattenedJWE;
}
//# sourceMappingURL=account-vault.d.ts.map