import { SdkCallContext } from './types.js';
export declare const SWIFT_CLI_NAME = "terminator";
export declare const SWIFT_CLI_PATH: string;
export interface SwiftCLIResult {
    stdout: string;
    stderr: string;
    exitCode: number | null;
    cancelled?: boolean;
    internalTimeoutHit?: boolean;
}
export declare function invokeSwiftCLI(cliArgs: string[], terminatorEnv: Record<string, string>, mcpContext: SdkCallContext, wrapperTimeoutMs: number): Promise<SwiftCLIResult>;
