import type { ExtractPropTypes } from 'vue'; import Color from './color'; import type ColorPicker from '../color-picker.vue'; export type ComponentSize = 'large' | 'default' | 'small'; export declare const isValidComponentSize: (val: string) => boolean; export declare const displayedRgb: (color: Color, showAlpha: boolean) => string; export declare const colorFormatOptions: { label: string; value: string; }[]; export type IColorFormat = 'hex' | 'rgb' | 'rgba' | 'hsv' | 'hsl'; export declare const colorPickerProps: { readonly value: { readonly type: import("vue").PropType; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly showAlpha: import("ll-plus/es/utils").EpPropFinalized; readonly colorFormat: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, "hex", boolean>; readonly popperClass: { readonly type: import("vue").PropType; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly predefine: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => string[], boolean>; readonly disabled: import("ll-plus/es/utils").EpPropFinalized; readonly readonly: import("ll-plus/es/utils").EpPropFinalized; readonly size: { readonly type: import("vue").PropType, unknown, unknown>>; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly placeholder: import("ll-plus/es/utils").EpPropFinalized; readonly pickerMode: import("ll-plus/es/utils").EpPropFinalized; readonly allowClear: import("ll-plus/es/utils").EpPropFinalized; readonly usePipette: import("ll-plus/es/utils").EpPropFinalized; readonly pipetteContainer: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => HTMLElement, boolean>; }; export declare const colorPickerEmits: { 'update:value': (value: string | null) => boolean; change: (value: string | null) => boolean; 'active-change': (value: string | null) => boolean; }; export type ColorPickerProps = ExtractPropTypes; export type ColorPickerEmits = typeof colorPickerEmits; export type ColorPickerInstance = InstanceType;