import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; import type ColorPicker from './color-picker.vue'; export declare const colorPickerProps: { readonly ariaLabel: StringConstructor; readonly emptyValues: ArrayConstructor; readonly valueOnClear: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, undefined, boolean>; readonly persistent: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly modelValue: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, undefined, boolean>; readonly id: StringConstructor; readonly showAlpha: BooleanConstructor; readonly colorFormat: StringConstructor; readonly disabled: BooleanConstructor; readonly size: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly popperClass: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly popperStyle: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly tabindex: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly teleported: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly appendTo: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly predefine: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly validateEvent: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; }; export declare const colorPickerEmits: { "update:modelValue": (val: string | null) => boolean; change: (val: string | null) => boolean; activeChange: (val: string | null) => boolean; focus: (evt: FocusEvent) => boolean; blur: (evt: FocusEvent) => boolean; }; export type ColorPickerProps = ExtractPropTypes; export type ColorPickerPropsPublic = __ExtractPublicPropTypes; export type ColorPickerEmits = typeof colorPickerEmits; export type ColorPickerInstance = InstanceType & unknown;