import { LitElement } from "lit";
/**
 * Second level navigation to be use within pzsh-nav.
 *
 * @slot - May contain pzsh-nav-item components
 */
export declare class Subnav extends LitElement {
    static styles: import("lit").CSSResult[];
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-subnav": Subnav;
    }
}
