import { LitElement, nothing } from '../../../../node_modules/lit'; import { AuthState } from '../../../context'; import { EnvConfig } from '../../../types'; export declare class SbAuthenticated extends LitElement { private _cachedChildren; createRenderRoot(): this; connectedCallback(): void; /** * The URL to redirect to if the user is not authenticated. * Defaults to environment variable, can be overridden via property. */ redirectUrl: string; env: EnvConfig | null; auth?: AuthState; render(): import('../../../../node_modules/lit-html').TemplateResult<1> | typeof nothing; }