import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common';
import { type ColorPickerPopoutProps, type ColorPickerPopoutEmits } from '../color-picker-popout/common';
import { type DefaultProps } from '../config';
export interface ColorPickerInputProps extends ColorPickerPopoutProps, Omit<PopoutInputProps, 'modelValue'> {
    valueOnClear?: () => any;
}
export declare const defaultColorPickerInputProps: () => DefaultProps<ColorPickerInputProps>;
export interface ColorPickerInputSlots extends PopoutInputSlots {
}
export interface ColorPickerInputEmits extends ColorPickerPopoutEmits {
}
export interface ColorPickerInputExpose {
}
