import { LitElement } from 'lit'; /** * The footer is a block of designated space for providing additional information or actions that are positioned below the main content. * * @status new * @category structure * @slot - The footer content. * * @cssprop [--n-footer-padding-inline=var(--n-space-l)] - Controls the inline padding around the footer’s main slot, using [spacing tokens](/tokens/#space). * @cssprop [--n-footer-box-shadow=var(--n-box-shadow-header)] - Controls the box shadow of the footer, using [box shadow tokens](/tokens/#box-shadow). * @cssprop [--n-footer-background-color=var(--n-color-surface)] - Controls the background color of the footer, using [color tokens](/tokens/#color). */ export default class Footer extends LitElement { static styles: import("lit").CSSResult[]; /** * Controls the size of the footer component. */ size: 'm' | 's'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-footer': Footer; } }