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. * * @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. * * @element mosaik-color-thumb * @category Media * * @csspart inner - The inner part. * * @cssprop {String} --color-thumb-background-color - The thumb background color CSS custom property. * @cssprop {String} --color-thumb-border-color - The thumb border color CSS custom property. * @cssprop {String} --color-thumb-border-radius - The thumb border radius CSS custom property. * @cssprop {String} --color-thumb-border-style - The thumb border style CSS custom property. * @cssprop {String} --color-thumb-border-width - The thumb border width CSS custom property. * @cssprop {String} --color-thumb-font-family - The thumb font family CSS custom property. * @cssprop {String} --color-thumb-font-letter-spacing - The thumb font letter spacing CSS custom property. * @cssprop {String} --color-thumb-font-line-height - The thumb font line height CSS custom property. * @cssprop {String} --color-thumb-font-size - The thumb font size CSS custom property. * @cssprop {String} --color-thumb-font-text-decoration - The thumb font text decoration CSS custom property. * @cssprop {String} --color-thumb-font-text-transform - The thumb font text transform CSS custom property. * @cssprop {String} --color-thumb-font-weight - The thumb font weight CSS custom property. * @cssprop {String} --color-thumb-foreground-color - The thumb foreground color CSS custom property. * @cssprop {String} --color-thumb-gap - The thumb gap CSS custom property. * @cssprop {String} --color-thumb-padding-bottom - The thumb padding bottom CSS custom property. * @cssprop {String} --color-thumb-padding-left - The thumb padding left CSS custom property. * @cssprop {String} --color-thumb-padding-right - The thumb padding right CSS custom property. * @cssprop {String} --color-thumb-padding-top - The thumb padding top CSS custom property. * @cssprop {String} --color-thumb-shadow - The thumb shadow CSS custom property. * @cssprop {String} --color-thumb-shadow-blur - The thumb shadow blur CSS custom property. * @cssprop {String} --color-thumb-shadow-color - The thumb shadow color CSS custom property. * @cssprop {String} --color-thumb-shadow-offset-x - The thumb shadow offset x CSS custom property. * @cssprop {String} --color-thumb-shadow-offset-y - The thumb shadow offset y CSS custom property. * @cssprop {String} --color-thumb-shadow-spread - The thumb shadow spread CSS custom property. * @cssprop {String} --color-thumb-size - The thumb size CSS custom property. * @cssprop {String} --color-thumb-transition-duration - The thumb transition duration CSS custom property. * @cssprop {String} --color-thumb-transition-mode - The thumb transition mode CSS custom property. * @cssprop {String} --color-thumb-transition-property - The thumb transition property CSS custom property. * @cssprop {String} --color-thumb-translate - The thumb translate CSS custom property. * * @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