import type { RegleFieldStatus } from '@regle/core'; import type { InputTextProps } from 'primevue'; interface WtInputTextProps extends /* @vue-ignore */ InputTextProps { label?: string; labelProps?: Record; type?: string; placeholder?: string; disabled?: boolean; required?: boolean; preventTrim?: boolean; v?: Record; regleValidation?: RegleFieldStatus; customValidators?: unknown[]; hideInputInfo?: boolean; } type __VLS_Props = WtInputTextProps; type __VLS_ModelProps = { modelValue?: string; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_7: { label: string; }, __VLS_21: {}, __VLS_39: {}; type __VLS_Slots = {} & { label?: (props: typeof __VLS_7) => any; } & { prefix?: (props: typeof __VLS_21) => any; } & { suffix?: (props: typeof __VLS_39) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, { focus: () => void; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: (...args: any[]) => any; }>, { type: string; required: boolean; label: string; disabled: boolean; placeholder: string; customValidators: unknown[]; v: Record; regleValidation: RegleFieldStatus; labelProps: Record; hideInputInfo: boolean; preventTrim: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };