import { UmbLitElement } from '../../packages/core/lit-element/index.js'; import './app-logo.element.js'; export declare class UmbAppElement extends UmbLitElement { #private; /** * The base URL of the configured Umbraco server. * @attr * @remarks This is the base URL of the Umbraco server, not the base URL of the backoffice. */ serverUrl: string; /** * The base path of the backoffice. * @attr */ backofficePath: string; /** * Bypass authentication. */ bypassAuth: boolean; /** * Keep the user logged in by automatically refreshing the session before it expires. * @attr */ keepUserLoggedIn: boolean; private _routes; constructor(); connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'umb-app': UmbAppElement; } }