import { ComponentSize } from '../../../hooks'; import { ComputedRef, ExtractPropTypes, PropType } from 'vue'; import type ColorPicker from './ColorPicker.vue'; export interface IUseOptions { currentColor: ComputedRef; } export declare const colorPickerProps: { modelValue: StringConstructor; showAlpha: BooleanConstructor; colorFormat: { type: StringConstructor; default: string; }; disabled: BooleanConstructor; size: { type: PropType; }; popperClass: StringConstructor; predefine: { type: PropType; }; }; export declare const colorPickerEmits: string[]; export declare type ColorPickerProps = ExtractPropTypes; export declare type ColorPickerEmits = typeof colorPickerEmits; export declare type ColorPickerInstance = InstanceType;