import type { RegleFieldStatus } from '@regle/core'; interface WtTimeInputProps { /** * Form input label */ label?: string; /** * Input id name for label association */ name?: string; /** * Time type: day, minute, second */ maxValue?: number; /** * Native input required attribute */ required?: boolean; /** * Native input disabled attribute */ disabled?: boolean; /** * Object with props, passed down to wt-label as props */ labelProps?: Record; /** * Hides input info section */ hideInputInfo?: boolean; /** * Vuelidate validation object */ v?: Record; /** * Regle validation object */ regleValidation?: RegleFieldStatus; /** * Custom validators for vuelidate */ customValidators?: unknown[]; } type __VLS_Props = WtTimeInputProps; type __VLS_ModelProps = { /** * Current input value (v-model) */ modelValue?: number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: number) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: (value: number) => any; }>, { name: string; required: boolean; label: string; disabled: boolean; maxValue: number; customValidators: unknown[]; v: Record; regleValidation: RegleFieldStatus; labelProps: Record; hideInputInfo: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const _default: typeof __VLS_export; export default _default;