import type { ColorPickerPrimitiveProps } from "./ColorPickerPrimitive.js"; export declare const useColorPicker: (props: ColorPickerPrimitiveProps) => { vm: { open: boolean; value: string; }; setColor: (color: Pick) => void; commitColor: (color: Pick) => void; setOpen: (open: boolean) => void; };