/** * Wires Monaco's worker into the page. * * The URL is relative to THIS module, which is what makes it resolvable from a * published package: Vite's `?worker` suffix and `new URL(..., import.meta.url)` * both handle relative paths but not bare package specifiers. That limitation is * why the design system ships its own pre-built worker rather than importing * one from monaco-editor on the consumer's behalf. * * Non-destructive by design: an application that already configured * MonacoEnvironment keeps its own worker. */ export declare function configureMonacoWorker(): void;