/// <reference types="node" />
import type { ReadStream } from "fs-extra";
export type PortForward = Promise<unknown> & {
  childProcess: {
    stdout: ReadStream;
    kill: () => any;
  };
};
export declare const stopPortForward: (name: string) => Promise<void>;
export declare const getAllRunningPortForwards: () => string[];
export declare const startPortForwardCommand: (name: string, command: string) => Promise<void>;
export declare const stopAllPortForwards: () => Promise<void>;