import type { PluginSource } from './sdk/types'; /** * The plugins compiled into this build of core, in load order. To add one: put its * manifest in `manifests.ts`, then pair that slug with a dynamic import here. * * Entries must stay dynamic imports. `installed.ts` is reachable from * `PluginHostProvider`, which sits in every route's provider tree, so a static * import would put every plugin's components — `@thatopen` and three among them — * in the eager bundle. Resolved at activation time instead, one chunk each. * * A default only: a consumer can pass its own list via * `` and gate it with `enabledSlugs`. * * The `hello-*` pair are the documentation's worked examples and the boundary's * regression test — they import nothing outside `sdk/`, so an insufficient plugin * surface stops them compiling. */ export declare const INSTALLED_PLUGINS: PluginSource[]; //# sourceMappingURL=installed.d.ts.map