import type { Transport } from './transport.js'; export interface LocalTransportOptions { /** Working directory for `exec` requests that don't carry their own cwd. * Defaults to process.cwd(). */ cwd?: string; } export declare function createLocalTransport(opts?: LocalTransportOptions): Transport;