import { LitElement } from "lit";
/**
 * Component that contains the application title, slogan and logo, below the header/banner.
 */
export declare class Hero extends LitElement {
    static styles: import("lit").CSSResult[];
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-hero": Hero;
    }
}
