import { SOTPStatusEnum } from './SOTPStatusEnum';
/** SOTP Two-Factor Authentication */
export interface SOTPAccount {
    /** Creation date */
    creationDate: string;
    /** Last used date */
    lastUsedDate?: string;
    /** Number of remaining codes */
    remaining: number;
    /** Status of this account */
    status: SOTPStatusEnum;
}
//# sourceMappingURL=SOTPAccount.d.ts.map