import { type Foldable, type View, type ViewProps } from '@tweakpane/core'; interface Config { viewProps: ViewProps; foldable: Foldable; } export declare class ColorView implements View { readonly element: HTMLElement; readonly swatchButtonElement: HTMLButtonElement; readonly swatchBoxElement: HTMLElement; readonly textElement: HTMLElement; constructor(doc: Document, config: Config); } export {};