import { LightningElement } from 'lwc'; /** * The local-dev server has no way to run bootstrap services, so * bootstrap work is done in the connectedCallback of this root component * * This component is added to globalThis.LWR.rootComponents in *view_bootstrap.ts * As a component, it has no access to client bootstrap config (ie: globalThis.LWR) */ export default class LocalDev extends LightningElement { connectedCallback(): void; } //# sourceMappingURL=bootstrap.d.ts.map