declare class App extends HTMLElement {
#private;
constructor();
static get observedAttributes(): string[];
/**
* called when the element is connected to the page
* this can be called multiple times during the element's lifecycle
* for example when using drag&drop to move elements around
*/
connectedCallback(): void;
disconnectedCallback(): void;
}
export { App };