import { WithInstall } from '../utils'; import { DefineComponent, ExtractPropTypes, ComputedRef, WritableComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue'; declare const HlxbInputNumber: WithInstall, { styleClass: ComputedRef<{ [x: string]: boolean; }>; inputValue: WritableComputedRef; decreaseDisabled: ComputedRef; increaseDisabled: ComputedRef; addCount: (type: any) => void; downCount: (type: any) => void; handleChange: () => void; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{ modelValue: { type: (StringConstructor | NumberConstructor)[]; default: string; }; step: { type: NumberConstructor; default: number; }; max: { type: NumberConstructor; default: number; }; min: { type: NumberConstructor; default: number; }; disabled: BooleanConstructor; precision: { type: NumberConstructor; }; }>> & Readonly<{}>, { disabled: boolean; max: number; min: number; modelValue: string | number; step: number; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, Partial<{ disabled: boolean; max: number; min: number; modelValue: string | number; step: number; }> & Omit<{ readonly disabled: boolean; readonly max: number; readonly min: number; readonly modelValue: string | number; readonly step: number; readonly precision?: number | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "max" | "min" | "modelValue" | "step">>; export default HlxbInputNumber;