import { type BaseInputParams, type InputBindingPlugin } from '@tweakpane/core'; import { OklchColor } from './model/color.js'; export interface OklchInputParams extends BaseInputParams { expanded?: boolean; } /** * Drop-in OKLCH colour picker. Because Tweakpane tries registered plugins before * its built-ins, this claims any colour-string binding and replaces the native * picker — no `view` parameter required. */ export declare const OklchInputPlugin: InputBindingPlugin;