interface Props { label?: string; hint?: string; name?: string; color: string | undefined; clear?: boolean; hideInput?: boolean; opacity?: boolean; onChange?: (color: string) => void; } declare const SColorPicker: import("svelte").Component; type SColorPicker = ReturnType; export default SColorPicker;