import type { HTMLInputAttributes } from 'svelte/elements';
interface Props extends Omit<HTMLInputAttributes, 'type'> {
}
declare const ColorInput: import("svelte").Component<Props, {}, "value">;
type ColorInput = ReturnType<typeof ColorInput>;
export default ColorInput;
