import { type DefaultProps } from '../config'; import { type FormPopoutProps } from '../popout/useFormPopout'; import { type ColorPickerProps } from '../color-picker/common'; import type { MotionEmits } from '../motion'; export interface ColorPickerPopoutProps extends FormPopoutProps, ColorPickerProps { } export declare const defaultColorPickerPopoutProps: DefaultProps; export interface ColorPickerPopoutSlots { title?(props: Record): any; 'title-prepend'?(props: Record): any; } export interface ColorPickerPopoutEmits extends MotionEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:modelValue', value: string): void; (e: 'change', value: string): void; (e: 'confirm', value: string): void; } export interface ColorPickerPopoutExpose { }