import type { RateChange } from './src/interface'; import type { VmIcon } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Rate from "./src/rate"; export declare const VRate: Install; readonly max: BasicType; readonly effectColor: BasicType, string | null>; readonly invalidColor: BasicType, string | null>; readonly readonly: BasicType; readonly icon: BasicType, null>; readonly size: BasicType, string | number | null>; readonly textShow: BasicType; readonly textColor: BasicType, string | null>; readonly textArr: BasicType, string[] | null>; readonly textSize: BasicType, string | number | null>; readonly onChange: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: number) => number; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly; readonly max: BasicType; readonly effectColor: BasicType, string | null>; readonly invalidColor: BasicType, string | null>; readonly readonly: BasicType; readonly icon: BasicType, null>; readonly size: BasicType, string | number | null>; readonly textShow: BasicType; readonly textColor: BasicType, string | null>; readonly textArr: BasicType, string[] | null>; readonly textSize: BasicType, string | number | null>; readonly onChange: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: number) => any) | undefined; }, { readonly icon: VmIcon; readonly size: string | number; readonly max: number; readonly modelValue: number; readonly onChange: RateChange; readonly textColor: string; readonly effectColor: string; readonly invalidColor: string; readonly readonly: boolean; readonly textShow: boolean; readonly textArr: string[]; readonly textSize: string | number; }>>; /** rate 组件实例类型 */ export type RateInstance = InstanceType; export * from './src/interface'; export default VRate;