interface ColorObject { hex: string; rgb: { r: number; g: number; b: number; value: string; }; rgba: { r: number; g: number; b: number; a: number; value: string; }; hsb: { h: number; s: number; b: number; value: string; }; alpha: number; } interface Props { /** * The color to display in the picker. */ color?: string; /** * The function to call when the color changes with full color object. */ oncolorchange?: (fullColor: ColorObject) => void; /** * The width of the picker. */ width?: string; /** * Whether the picker is disabled. */ disabled?: boolean; /** * The id of the picker. */ id?: string; /** * Whether the color select should be shown by default. */ defaultShowColorSelect?: boolean; } declare const ColorPicker: import("svelte").Component; type ColorPicker = ReturnType; export default ColorPicker;