import { CustomElement } from '../../Abstracts/CustomElement'; import { IColorSwatchGroupElementProps } from './IColorSwatchGroupElementProps'; declare const ColorSwatchGroupElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Sizeable").ISizeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Color Swatch Group - A grouping of color swatches. * * @element mosaik-color-swatch-group * * @slot - The default slot. * * @example * Basic usage with swatches: * ```html * * * * * * ``` * * @example * With size and variant applied to the group: * ```html * * * * * ``` * * @public */ export declare class ColorSwatchGroupElement extends ColorSwatchGroupElement_base implements IColorSwatchGroupElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace ColorSwatchGroupElement { type Props = IColorSwatchGroupElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-color-swatch-group': ColorSwatchGroupElement; } } export {}; //# sourceMappingURL=ColorSwatchGroupElement.d.ts.map