export interface UserIdentity { uuid?: string; accessToken?: string; refreshToken?: string; impersonator?: string; disqus?: { enabled: boolean; publicKey: string; ssoKey?: string; }; } export interface UpdatePasswordSuccessResponse { userName: string; passwordReset: boolean; type: string; lastLoginDate?: number; locked?: boolean; } export declare function isUpdatePasswordSuccessResponse(object: any): object is UpdatePasswordSuccessResponse; export declare function isUserIdentity(object: any): object is UserIdentity;