import { LitElement } from "lit";
/**
 * Full height container component that expects to be "slotted" with
 * header, content and footer.
 *
 * @slot - Add header, content and footer in this slot.
 */
export declare class Container extends LitElement {
    static styles: import("lit").CSSResult[];
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        "pzsh-container": Container;
    }
}
