import { IEnvironment } from '../interfaces';
export interface IParsedCommand {
id: string;
cmd: string[];
cwd: string;
timeout: number | undefined;
}
export default function getCommands(environment: IEnvironment, commandNames: string[], params?: string[][]): IParsedCommand[];