import { BpInput } from '@blueprintui/components/input'; interface EyeDropperResult { sRGBHex: string; } interface EyeDropperConstructor { new (): { open(): Promise; }; } declare global { interface Window { EyeDropper?: EyeDropperConstructor; } var EyeDropper: EyeDropperConstructor | undefined; } /** * ```typescript * import '@blueprintui/components/include/color.js'; * ``` * * ```html * * * * * ``` * * @summary The color input component is used to allow users to select a color from a predefined set of options or to input a specific color value. * @element bp-color * @since 1.0.0 * @slot prefix - slot for prefix text or icons * @slot suffix - slot for suffix text or icons * @cssprop --background * @event {InputEvent} input - occurs when the value changes * @event {InputEvent} change - occurs when the value changes */ export declare class BpColor extends BpInput { #private; /** Defines the input type as color, enabling color picker functionality */ accessor type: string; static get styles(): CSSStyleSheet[]; protected get suffixTemplate(): import("lit").TemplateResult<1>; } export {};