import { InputHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { IconNode } from '../icon/utils'; interface InputProps { /** @ignore */ disabled?: InputHTMLAttributes['disabled']; /** @ignore */ form?: InputHTMLAttributes['form']; /** @ignore */ name?: InputHTMLAttributes['name']; } type __VLS_Props = { /** Value of the rate. */ modelValue?: number; /** Shape icon of the rate. */ shape?: IconNode; } & InputProps; declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { "update:modelValue": (value: number) => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:modelValue"?: ((value: number) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, { root: HTMLLabelElement; input: HTMLInputElement; }, HTMLLabelElement>; export default _default;