import { spawn } from "node:child_process"; import type { MountLauncher, MountedWorkspaceStatus, ReadMountedWorkspaceStatusInput } from "./setup-types.js"; interface DefaultMountLauncherOptions { spawnImpl?: typeof spawn; now?: () => number; readyPollIntervalMs?: number; } export declare const defaultMountLauncher: MountLauncher; export declare function createDefaultMountLauncher(options?: DefaultMountLauncherOptions): MountLauncher; export declare function readMountedWorkspaceStatus(input: ReadMountedWorkspaceStatusInput): Promise; export {};