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