import { LitElement } from "lit";
/**
 * Main navigation of the application.
 *
 * @slot - May contain pzsh-nav-item and pzsh-subnav components
 */
export declare class Nav extends LitElement {
    static styles: import("lit").CSSResult[];
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-nav": Nav;
    }
}
