import AppContext from '../../common/appContext/appContext.js'; import '../../common/appContext/eventBus.js'; import '../../common/appContext/i18n.js'; import '../../common/appContext/sharedState.js'; import './i18n.js'; /** * Custom element for configuring the application * context. */ export declare class LittleAppContext extends HTMLElement { /** * Monitor the 'name' attribute for changes, see: * https://developer.mozilla.org/en-US/docs/Web/Web_Components/Custom_Elements */ static get observedAttributes(): string[]; /** * Property backed by "config-href" attribute, * filtered to replace HOSTNAME with globalThis.location.hostname */ get configHref(): string[]; /** Property backed by "main-module" attribute */ get mainModule(): string; get appCx(): Promise; private bootstrap; connectedCallback(): void; } export default AppContext; export * from '../../common/appContext/appContext.js';