/** * Resolve the on-disk path of a Python sidecar shipped under `src/core/python/`. * * In `src/` (during tests / dev), `import.meta.url` points inside `src/core/python/` * so the script sits next to this file. In `dist/` (after `tsc`), the build's * post-step copies `src/core/python/` → `dist/core/python/`, so the same * relative resolution works. * * If the script cannot be found we throw — better an explicit error than * silently spawning Python with a non-existent path. */ export declare function sidecarPath(filename: string): string; //# sourceMappingURL=sidecar-path.d.ts.map