import { LitElement } from "lit";
/**
 * Backdrop component to be appended to body, used in `pzsh-menu`
 * component.
 */
export declare class Backdrop extends LitElement {
    static styles: import("lit").CSSResult[];
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-backdrop": Backdrop;
    }
}
