import { CustomElement } from '../../Abstracts/CustomElement'; import type { IColorThumbElementProps } from './IColorThumbElementProps'; declare const ColorThumbElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Color Thumb - A user interface component used for selecting or adjusting colors. * * @element mosaik-color-thumb * * @description * The Color Thumb component is designed to enable users to interact with and modify colors in various applications. * It typically appears as a draggable or clickable element that can be used to select a color from a palette, adjust * color values, or perform color-related actions. Color thumbs are commonly found in color pickers, design tools, * and applications where color customization is essential. * * @category Media * * @example * Basic usage with a color: * ```html * * ``` * * @example * Open state (tooltip visible): * ```html * * ``` * * @example * Disabled state: * ```html * * ``` * * @public */ export declare class ColorThumbElement extends ColorThumbElement_base implements IColorThumbElementProps { private _color; private _isOpen; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `color` property. * * @public * @attr */ get color(): string; set color(value: string); /** * Gets or sets the `isOpen` property. * * @public * @attr */ get isOpen(): boolean; set isOpen(value: boolean); /** * @protected * @overload */ protected onApplyTemplate(): void; /** * @private */ private handlePointerdown; /** * @private */ private handlePointerup; } /** * @public */ export declare namespace ColorThumbElement { type Props = IColorThumbElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-color-thumb': ColorThumbElement; } } export {}; //# sourceMappingURL=ColorThumbElement.d.ts.map