import { LitElement } from "lit";
/**
 * Footer action link.
 *
 * @slot - Slot for the icon and the text
 */
export declare class FooterLink extends LitElement {
    href: string;
    static styles: import("lit").CSSResult[];
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-footer-link": FooterLink;
    }
}
