import { WheelProps } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = WheelProps; type __VLS_ModelProps = { modelValue?: string | number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { change: (value: string | number) => any; "update:modelValue": (value: string | number) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onChange?: ((value: string | number) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, { arrow: boolean; itemHeight: number; visibleCount: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;