import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition"; import { TextPropertyValue } from "../values"; export declare class TextDisplaySettings extends PropertyDisplaySettingsBase { } export type TextEditorSettings = { required?: boolean; maxLength?: number; multiLine?: boolean; disallowWhiteSpace?: boolean; rows?: number; }; export declare const textPropertyDefinitionId: Guid; export declare class TextPropertyDefinition extends PropertyDefinition { id: Guid; typeName: string; }