import { Props } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = Props; type __VLS_PublicProps = { modelValue?: number; } & __VLS_Props; declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: number) => any; } & { change: () => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onChange?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: number) => any) | undefined; }>, { size: string; color: string; disabled: boolean; icon: string; readonly: boolean; iconSelect: string; count: number; tips: string[]; tipsColor: string; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export default _default;