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 { DateTimePropertyValue } from "../values"; import { DateRenderOption } from "./DatePropertyDefinition"; export type DateTimeDisplaySettings = { locks?: PropertyLockStatusType, "label">>; renderMode?: DateRenderOption; showTimeZone?: boolean; } & PropertyDisplaySettingsBase; export type DateTimeEditorSettings = { required: boolean; }; export declare const DateTimePropertyDefinitionId: Guid; export declare class DateTimePropertyDefinition extends PropertyDefinition { id: Guid; typeName: string; }