export type ShellContractRoute = { kind: "passthrough"; command: string; } | { kind: "powershell"; command: string; argv: readonly string[]; } | { kind: "python-engine"; command: string; } | { kind: "unsupported"; error: string; }; export declare function routeShellContract(command: string, platform?: NodeJS.Platform, options?: { pythonEngine?: boolean; }): ShellContractRoute; //# sourceMappingURL=shell-contract-router.d.ts.map