import { type ColorPickerFormatOption, type ColorPickerOnFormatChange } from './utils'; export type { ColorPickerFormatChangeProps, ColorPickerFormatOption } from './utils'; declare global { interface Window { EyeDropper: any; } } export interface ColorPickerBaseProps { value: string; format?: string; formats?: ColorPickerFormatOption[]; onFormatChange?: ColorPickerOnFormatChange; disabled?: boolean; onChange?(value: string | null, partial?: boolean): void; } export default function ColorPickerBase({ value, format, formats, onChange, onFormatChange, disabled }: ColorPickerBaseProps): import("react/jsx-runtime").JSX.Element;