import type { execa as execaType } from 'execa';
/**
 * Lazily imports execa using a runtime-constructed module specifier.
 * This prevents bundlers (Vite/Rollup/esbuild) from resolving execa at build time,
 * which is necessary for Cloudflare Workers where execa's transitive deps
 * (npm-run-path → unicorn-magic) use Node-only conditional exports.
 */
export declare function getExeca(): Promise<typeof execaType>;
//# sourceMappingURL=execa.d.ts.map