import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition"; import { IntegerPropertyValue } from "../values"; export declare class IntegerDisplaySettings extends PropertyDisplaySettingsBase { } export type IntegerEditorSettings = { required?: boolean; minValue?: number; maxValue?: number; }; export declare const IntegerPropertyDefinitionId: Guid; export declare class IntegerPropertyDefinition extends PropertyDefinition { id: Guid; typeName: string; }