import { TsxAllowUnknowProperties } from "../"; import { TimePeriodSettings } from "../../models"; export interface ITimePeriodPicker { dark?: boolean; disabled?: boolean; hideDetails?: boolean; valueBind: TimePeriodSettings; onValueChanged: (model: TimePeriodSettings) => void; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-time-period-picker": TsxAllowUnknowProperties; } } }