import type { Component, ExtractPropTypes } from 'vue'; import type Rate from './rate.vue'; export declare const rateProps: { readonly ariaLabel: StringConstructor; readonly modelValue: import("element-plus/es/utils").EpPropFinalized; readonly id: import("element-plus/es/utils").EpPropFinalized; readonly lowThreshold: import("element-plus/es/utils").EpPropFinalized; readonly highThreshold: import("element-plus/es/utils").EpPropFinalized; readonly max: import("element-plus/es/utils").EpPropFinalized; readonly colors: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[] | Record) | (() => string[] | Record) | ((new (...args: any[]) => string[] | Record) | (() => string[] | Record))[], unknown, unknown, () => ["", "", ""], boolean>; readonly voidColor: import("element-plus/es/utils").EpPropFinalized; readonly disabledVoidColor: import("element-plus/es/utils").EpPropFinalized; readonly icons: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | Component)[] | Record>) | (() => (string | Component)[] | Record>) | ((new (...args: any[]) => (string | Component)[] | Record>) | (() => (string | Component)[] | Record>))[], unknown, unknown, () => [Component, Component, Component], boolean>; readonly voidIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown, () => Component, boolean>; readonly disabledVoidIcon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown, () => Component, boolean>; readonly disabled: BooleanConstructor; readonly allowHalf: BooleanConstructor; readonly showText: BooleanConstructor; readonly showScore: BooleanConstructor; readonly textColor: import("element-plus/es/utils").EpPropFinalized; readonly texts: import("element-plus/es/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/es/utils").EpPropFinalized; readonly size: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly clearable: BooleanConstructor; }; 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;