import { CommandParams, SendInputParams, ReceiveOutputResult } from './types'; export declare function doExecuteCommand(params: CommandParams): Promise; export declare function doSendInput(params: SendInputParams): Promise; export declare function doExecutePowershell(params: CommandParams, interactive?: boolean): Promise; export declare function doReceiveOutput(params: CommandParams): Promise; export declare function doReceiveOutputNonBlocking(params: CommandParams): Promise;