import type { TmuxCommandResult } from "../runner"; type CloseTmuxPaneDependencies = { readonly isInsideTmux: () => boolean; readonly getTmuxPath: () => Promise; readonly runTmuxCommand: (tmuxPath: string, args: string[]) => Promise; readonly log: (message: string, data?: unknown) => void; readonly delay: (milliseconds: number) => Promise; }; export declare function closeTmuxPane(paneId: string): Promise; export declare function closeTmuxPaneWithDependencies(paneId: string, dependencies: CloseTmuxPaneDependencies): Promise; export {};