export interface MountConfig { binaryPath?: string; relayfileUrl: string; workspace: string; token: string; mountPoint?: string; } export interface MountHandle { pid: number; mountPoint: string; stop(): Promise; } export declare function ensureRelayfileMount(config: MountConfig): Promise;