import { CustomElement } from '../../Abstracts/CustomElement'; import { IDotGroupElementProps } from './IDotGroupElementProps'; declare const DotGroupElement_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; /** * Dot Group - A grouping of dots for status indicators or visual representations. * * @description * The DotGroup component provides a container for multiple Dot elements, automatically * managing their layout, spacing, and shared properties like size. Ideal for creating * status indicator groups, progress visualizations, or rating displays. * * @element mosaik-dot-group * @category Primitives * * @slot - Default slot for Dot elements * * @cssprop {String} --dot-group-background-color - The group background color CSS custom property. * @cssprop {String} --dot-group-border-color - The group border color CSS custom property. * @cssprop {String} --dot-group-border-radius - The group border radius CSS custom property. * @cssprop {String} --dot-group-border-style - The group border style CSS custom property. * @cssprop {String} --dot-group-border-width - The group border width CSS custom property. * @cssprop {String} --dot-group-font-family - The group font family CSS custom property. * @cssprop {String} --dot-group-font-letter-spacing - The group font letter spacing CSS custom property. * @cssprop {String} --dot-group-font-line-height - The group font line height CSS custom property. * @cssprop {String} --dot-group-font-size - The group font size CSS custom property. * @cssprop {String} --dot-group-font-text-decoration - The group font text decoration CSS custom property. * @cssprop {String} --dot-group-font-text-transform - The group font text transform CSS custom property. * @cssprop {String} --dot-group-font-weight - The group font weight CSS custom property. * @cssprop {String} --dot-group-foreground-color - The group foreground color CSS custom property. * @cssprop {String} --dot-group-gap - The group gap CSS custom property. * @cssprop {String} --dot-group-padding-bottom - The group padding bottom CSS custom property. * @cssprop {String} --dot-group-padding-left - The group padding left CSS custom property. * @cssprop {String} --dot-group-padding-right - The group padding right CSS custom property. * @cssprop {String} --dot-group-padding-top - The group padding top CSS custom property. * @cssprop {String} --dot-group-shadow - The group shadow CSS custom property. * @cssprop {String} --dot-group-shadow-blur - The group shadow blur CSS custom property. * @cssprop {String} --dot-group-shadow-color - The group shadow color CSS custom property. * @cssprop {String} --dot-group-shadow-offset-x - The group shadow offset x CSS custom property. * @cssprop {String} --dot-group-shadow-offset-y - The group shadow offset y CSS custom property. * @cssprop {String} --dot-group-shadow-spread - The group shadow spread CSS custom property. * @cssprop {String} --dot-group-transition-duration - The group transition duration CSS custom property. * @cssprop {String} --dot-group-transition-mode - The group transition mode CSS custom property. * @cssprop {String} --dot-group-transition-property - The group transition property CSS custom property. * @cssprop {String} --dot-group-translate - The group translate CSS custom property. * * @example * Status indicator group: * ```html * * * * * * ``` * * @example * Rating display: * ```html * * * * * * * * ``` * * @public */ export declare class DotGroupElement extends DotGroupElement_base implements IDotGroupElementProps { /** * @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 DotGroupElement { type Props = IDotGroupElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-dot-group': DotGroupElement; } } export {}; //# sourceMappingURL=DotGroupElement.d.ts.map