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 * * @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