import { default as tinycolor } from 'tinycolor2'; import { WritableComputedRef } from 'vue'; export interface useTinyColorModelProps { modelValue?: tinycolor.ColorInput; } export declare const ColorPickerEmits: string[]; export declare function defineColorModel(props: useTinyColorModelProps, emit: any): WritableComputedRef;