import type { RegleFieldStatus } from '@regle/core'; import type { InputNumberProps } from 'primevue'; interface WtInputNumberProps extends /* @vue-ignore */ InputNumberProps { label?: string; labelProps?: Record; placeholder?: string; disabled?: boolean; required?: boolean; min?: number; max?: number; step?: number; useGrouping?: boolean; minFractionDigits?: number; maxFractionDigits?: number; showButtons?: boolean; v?: Record; regleValidation?: RegleFieldStatus; customValidators?: unknown[]; hideInputInfo?: boolean; } type __VLS_Props = WtInputNumberProps; type __VLS_ModelProps = { modelValue?: number | null; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_7: { label: string; }, __VLS_21: {}, __VLS_53: {}; type __VLS_Slots = {} & { label?: (props: typeof __VLS_7) => any; } & { prefix?: (props: typeof __VLS_21) => any; } & { suffix?: (props: typeof __VLS_53) => 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; }>, { required: boolean; label: string; disabled: boolean; placeholder: string; step: number; customValidators: unknown[]; min: number; max: number; v: Record; regleValidation: RegleFieldStatus; labelProps: Record; useGrouping: boolean; minFractionDigits: number; maxFractionDigits: number; showButtons: boolean; hideInputInfo: 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; }; };