import { ReactiveControllerHost } from 'lit'; import type { ColorPickerHost } from '../interfaces/index.js'; import { BaseComponentController } from '@nuralyui/common/controllers'; /** * Base controller class for all colorpicker controllers * Provides common functionality for event dispatching, updates, and error handling */ export declare abstract class BaseColorPickerController extends BaseComponentController { /** * Find an element within the host's shadow root */ protected findElement(selector: string): HTMLElement | null; } //# sourceMappingURL=base.controller.d.ts.map