import CustomElement from "../../custom-element/CustomElement"; import { CustomElementStateMetadata } from "../../custom-element/interfaces"; import { NodePatchingData } from "../../renderer/NodePatcher"; /** * The root class of the SPA * Centralizes: Authorization, Localization, Errors display */ export default class App extends CustomElement { static get state(): Record; render(): NodePatchingData; renderErrors(): NodePatchingData; connectedCallback(): void; disconnectedCallback(): void; handleError(event: CustomEvent): void; } //# sourceMappingURL=App.d.ts.map