import { IdentityType } from '../core/identity-type'; /** * Represents "auth identity". */ export declare class AuthIdentity { authIdType: IdentityType; getId(): string; setId(_id: string): void; private _token; private _tokenExpirationTime; private _tokenValidatedTime; getToken(): (string | null); setToken(_token: string, _tokenExpirationTime?: number): void; get isTokenValidated(): boolean; isEnabledForNotifications: boolean; authId: string; constructor(authId?: (string | null), authIdType?: IdentityType); toString(): string; clone(): AuthIdentity; static clone(obj: any): AuthIdentity; copy(): AuthIdentity; }