import { SSOSignature } from '../self/'; import { ManagedSource, User } from '../user/'; export interface Self extends User { locale: string; /** * What is the source of truth for this user; if it's SCIM * then the profile can't be edited via normal means. */ managed_by?: ManagedSource; sso_id?: SSOSignature; } //# sourceMappingURL=Self.d.ts.map