import { CustomElement } from '../../Abstracts/CustomElement'; import { IFooterItemElementProps } from './IFooterItemElementProps'; declare const FooterItemElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * FooterItem - A wrapper for individual items within a footer group with list semantics. * * @description * The FooterItem element provides a semantic list item container (role="listitem") for content * within footer groups. Typically wraps anchor tags or other interactive elements to create * properly structured, accessible footer navigation. Works in conjunction with FooterItemGroupElement * to create hierarchical footer navigation with proper ARIA roles. Automatically adapts styling * based on parent container position. * * @name FooterItem * @element mosaik-footer-item * @category Primitives * * @slot - Default slot for link or content (typically an anchor tag) * * @csspart root - The list item container element * * @example * Basic footer item with link: * ```html * * About Us * * ``` * * @example * Footer items in a group: * ```html * * FAQ * Support * Contact * * ``` * * @example * Footer item with custom content: * ```html * * * * ``` * * @public */ export declare class FooterItemElement extends FooterItemElement_base implements IFooterItemElementProps { /** * @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 FooterItemElement { type Props = IFooterItemElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-footer-item': FooterItemElement; } } export {}; //# sourceMappingURL=FooterItemElement.d.ts.map