interface Props { value?: string; swatches?: string[]; showInput?: boolean; showNative?: boolean; disabled?: boolean; class?: string; nativeClass?: string; inputClass?: string; swatchesClass?: string; swatchClass?: string; 'aria-label'?: string; 'aria-labelledby'?: string; swatchesLabel?: string; nativeInputLabel?: string; onChange?: (value: string) => void; } declare const ColorPicker: import("svelte").Component; type ColorPicker = ReturnType; export default ColorPicker;