export declare class EdikColorView extends HTMLElement {
static readonly TAG: string;
static readonly COLOR_ATTR: string;
styles: HTMLStyleElement;
wrapper: HTMLDivElement;
previewElement: HTMLDivElement;
colorElement: HTMLSpanElement;
colorPicker: HTMLInputElement;
static get observedAttributes(): string[];
get color(): string;
set color(newColor: string);
constructor();
connectedCallback(): void;
attributeChangedCallback(name: string, _: string, newValue: string): void;
render(color: string): void;
}