import { IdentityName } from "./identity-name.model"; import { IdentityImage } from "./identity-image.model"; export declare class Identity { id: string; isSelf: boolean; primaryName?: IdentityName; names: IdentityName[]; primaryImage?: IdentityImage; images: IdentityImage[]; constructor(id: string); }