import { LitElement } from "lit";
/**
 * Dropdown menu item with icon and text.
 *
 * @slot - Slot for the icon and the text
 */
export declare class MenuDropdownItem extends LitElement {
    href: string;
    static styles: import("lit").CSSResult[];
    focus(options?: FocusOptions): void;
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-menu-dropdown-item": MenuDropdownItem;
    }
}
