import { Gradient } from './gradient.js'; export declare function parseColor(cstr: string): { value: string; alpha: number; }; export interface ColorElementValue { gradient?: SVGElement; value: string; opacity: number; } export declare function createColor({ options, color, additionalRotation, x, y, height, width, name, dotSize: size, document }: { options?: Gradient; color?: string; additionalRotation: number; x: number; y: number; height: number; width: number; name: string; dotSize: number; document: Document; }): ColorElementValue | undefined;