import { type CliError } from "../../../_utils/cli-error.js"; import { type Result } from "../../../_utils/result.js"; declare const nativeFile: { stage(prefix: string, lines: readonly Record[]): Promise>; install(stagedPath: string, targetPath: string, recoveryCommand: string): Promise>; cleanup(stagedPath: string): Promise; launch(binary: string, args: readonly string[], workspace: string): Result; }; export { nativeFile };