/** * * A structured identifier used to match a user during login, composed of an assigner system and a * value within that system. * / */ export declare class LoginIdentifier { /** * * The system or authority that issued or manages this identifier. */ assigner: string; /** * * The identifier value within the assigner's namespace. */ value: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): LoginIdentifier; }