import { type DefaultProps } from '../config';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
import { type ColorPickerProps } from '../color-picker/common';
export interface ColorPickerPopoutProps extends FormPopoutProps, ColorPickerProps {
}
export declare const defaultColorPickerPopoutProps: () => DefaultProps<ColorPickerPopoutProps>;
export interface ColorPickerPopoutSlots {
    title?(props: Record<string, never>): any;
    'title-prepend'?(props: Record<string, never>): any;
}
export interface ColorPickerPopoutEmits extends TransitionHookEmits {
    (e: 'update:visible', visible: boolean): void;
    (e: 'update:model-value', value: string): void;
    (e: 'change', value: string): void;
    (e: 'confirm'): void;
}
export interface ColorPickerPopoutExpose {
}
