import { CustomElement } from '../../Abstracts/CustomElement'; import { IFooterItemGroupElementProps } from './IFooterItemGroupElementProps'; declare const FooterItemGroupElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * FooterItemGroup - A collapsible group container for organizing footer links and content. * * @description * The FooterItemGroup element creates a labeled, collapsible section within a footer for organizing * related links or content items. Features an optional header, open/closed state management, and * automatic role="list" semantics for accessibility. Typically contains FooterItemElement children * for individual links or content. Adapts layout based on parent slot position (start, end, or top). * Useful for creating organized footer navigation with categories like "Products", "Company", "Support", etc. * * @name FooterItemGroup * @element mosaik-footer-item-group * @category Primitives * * @slot - Default slot for FooterItemElement children or other content * * @csspart root - The root container element * @csspart header - The header/title element * @csspart list - The list container (role="list") * * @dependency {IconElement} - Icon component for expand/collapse indicators * * @example * Basic footer group with links: * ```html * * * Products * Product A * Product B * Pricing * * * ``` * * @example * Expandable footer group with slotted header: * ```html * * Resources * Documentation * Tutorials * API Reference * * ``` * * @example * Multiple groups in footer: * ```html * *
* * Company * About Us * Careers * *
*
* * Support * Help Center * Contact * *
*
* ``` * * @public */ export declare class FooterItemGroupElement extends FooterItemGroupElement_base implements IFooterItemGroupElementProps { private _header; private _open; /** * @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 `header` property. * * @public */ get header(): string; set header(value: string); /** * Gets or sets the `open` property. * * @public */ get open(): boolean; private set open(value); toggle(): void; } /** * @public */ export declare namespace FooterItemGroupElement { type Props = IFooterItemGroupElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-footer-item-group': FooterItemGroupElement; } } export {}; //# sourceMappingURL=FooterItemGroupElement.d.ts.map