import { Guid, GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; import { LockStatusExcludeChildren, PropertyLockStatusType } from "../../../ux"; import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition"; import { ImagePropertyValue } from "../values"; export type ImageDisplaySettings = { locks?: PropertyLockStatusType, "label">>; width?: string; height?: string; avatar?: { size: number; }; } & PropertyDisplaySettingsBase; export type ImageEditorSettings = { locks?: PropertyLockStatusType, "cropRatioUniqueIds" | "preConfiguredImageScalingUniqueId">>; preConfiguredImageScalingUniqueId?: GuidValue; forceScaling?: boolean; cropRatioUniqueIds?: Array; required?: boolean; rollupRatiosDisabled?: boolean; }; export declare const imagePropertyDefinitionId: Guid; export declare class ImagePropertyDefinition extends PropertyDefinition { id: Guid; typeName: string; }