import { LitElement } from 'lit'; /** * Container to help with positioning and padding of the global elements such as: adds padding for the fixed Header and Local Nav, adds main content gutters, and makes Footer sticky. This takes the onus off of the consuming app to configure these values. * @slot unnamed - Slot for global elements. */ export declare class UiShell extends LitElement { static styles: import("lit").CSSResult; /** @internal */ accessor _headerEl: any; /** @internal */ accessor _localNavEl: any; /** @internal */ accessor _footerEl: any; /** @internal */ accessor _mainEl: any; render(): import("lit-html").TemplateResult<1>; firstUpdated(): void; private handleSlotChange; } declare global { interface HTMLElementTagNameMap { 'kyn-ui-shell': UiShell; } } //# sourceMappingURL=uiShell.d.ts.map