import type { returnType } from '../../_utils/props';
import type { ExtractPropTypes, PropType } from 'vue';
import type { ColorFormat } from './type';
export declare const dkColorPickerPanelProps: {
    readonly modelValue: returnType<PropType<"">, "" | null>;
    readonly disabled: returnType<BooleanConstructor, boolean>;
    readonly showAlpha: returnType<BooleanConstructor, boolean>;
    readonly format: {
        readonly type: PropType<ColorFormat>;
        readonly default: "hex";
    };
    readonly width: returnType<PropType<"280px">, "280px" | null>;
};
export type ColorPickerPanelProps = ExtractPropTypes<typeof dkColorPickerPanelProps>;
