import { Package } from "./binary-install"; import { ChildProcess } from "child_process"; declare const getPackage: (version: string) => Package; declare const install: (suppressLogs: boolean) => Promise | void; declare const run: () => void; declare const runInline: (args: string[], env: NodeJS.ProcessEnv) => Promise; export { install, run, runInline, getPackage }; //# sourceMappingURL=binary.d.ts.map