export type UserIdentityResponse = { uuid: string; type: string; backend: string; identity: string; }; export type UserIdentityListResponse = { items: Array; total: number; }; export default class UserIdentity { uuid: string; type: string; backend: string; identity: string; static parseMany(plain: UserIdentityListResponse): Array; static parse(plain: UserIdentityResponse): UserIdentity; static newFrom(userIdentity: UserIdentity): any; constructor({ uuid, type, backend, identity, }?: Record); } //# sourceMappingURL=UserIdentity.d.ts.map