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