import type { Component, ExtractPropTypes, PropType } from 'vue'; import type Rate from './rate.vue'; export declare const rateProps: { readonly modelValue: import("@element-plus-next/vue-utils").EpPropFinalized; readonly id: import("@element-plus-next/vue-utils").EpPropFinalized; readonly lowThreshold: import("@element-plus-next/vue-utils").EpPropFinalized; readonly highThreshold: import("@element-plus-next/vue-utils").EpPropFinalized; readonly max: import("@element-plus-next/vue-utils").EpPropFinalized; readonly colors: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => string[] | Record) | (() => string[] | Record) | ((new (...args: any[]) => string[] | Record) | (() => string[] | Record))[], unknown, unknown, () => ["", "", ""], boolean>; readonly voidColor: import("@element-plus-next/vue-utils").EpPropFinalized; readonly disabledVoidColor: import("@element-plus-next/vue-utils").EpPropFinalized; readonly icons: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | Component)[] | Record>) | (() => (string | Component)[] | Record>) | ((new (...args: any[]) => (string | Component)[] | Record>) | (() => (string | Component)[] | Record>))[], unknown, unknown, () => import("@vue/runtime-core").DefineComponent<{}, {}, {}, import("@vue/runtime-core").ComputedOptions, import("@vue/runtime-core").MethodOptions, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly>, {}>[], boolean>; readonly voidIcon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp) | ((new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp))[], unknown, unknown, () => import("@vue/runtime-core").DefineComponent<{}, {}, {}, import("@vue/runtime-core").ComputedOptions, import("@vue/runtime-core").MethodOptions, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly>, {}>, boolean>; readonly disabledVoidIcon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp) | ((new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp))[], unknown, unknown, () => import("@vue/runtime-core").DefineComponent<{}, {}, {}, import("@vue/runtime-core").ComputedOptions, import("@vue/runtime-core").MethodOptions, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly>, {}>, boolean>; readonly disabled: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly allowHalf: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly showText: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly showScore: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly textColor: import("@element-plus-next/vue-utils").EpPropFinalized; readonly texts: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => ["Extremely bad", "Disappointed", "Fair", "Satisfied", "Surprise"], boolean>; readonly scoreTemplate: import("@element-plus-next/vue-utils").EpPropFinalized; readonly size: { readonly type: PropType ("" | "small" | "default" | "large") & {}) | (() => "" | "small" | "default" | "large") | ((new (...args: any[]) => ("" | "small" | "default" | "large") & {}) | (() => "" | "small" | "default" | "large"))[], unknown, "" | "small" | "default" | "large">>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly label: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type RateProps = ExtractPropTypes; export declare const rateEmits: { change: (value: number) => boolean; "update:modelValue": (value: number) => boolean; }; export declare type RateEmits = typeof rateEmits; export declare type RateInstance = InstanceType;