import { EnterprisePropertyDisplayProps } from "../../EnterprisePropertyComponentProps"; export interface IDatetimeFieldDisplay extends EnterprisePropertyDisplayProps { [name: string]: any; settings?: DateTimeFieldSettings; } export interface DateTimeFieldSettings { format?: string; locale?: string; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-enterpriseproperties-datetimefield-display": IDatetimeFieldDisplay; } } }