import { PrincipalTypes } from "@omnia/fx-models"; import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; import { LockStatusExcludeChildren, PropertyLockStatusType } from "../../../ux"; import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition"; import { IdentityPropertyValue } from "../values"; export declare class IdentityPropertyDisplaySettings extends PropertyDisplaySettingsBase { locks?: PropertyLockStatusType, "label">>; hidePresence?: boolean; showImage?: boolean; showName?: boolean; deletedUsersOnly?: boolean; } export type IdentityPropertyEditorSettings = { locks?: PropertyLockStatusType>; required?: boolean; multiple?: boolean; hideDynamicGroupSelection?: boolean; type?: PrincipalTypes; deletedUsersOnly?: boolean; }; export declare const identityPropertyDefinitionId: Guid; export declare class IdentityPropertyDefinition extends PropertyDefinition { id: Guid; typeName: string; }