import { CommandsStore } from "../runResult/CommandsStore"; import { CommandsParsingStream } from "./CommandsParsingStream"; import { CommandWarning } from "../runResult/warnings/RunnerWarning"; /** * It's not documented, but GitHub Actions parses commands from both stdout and stderr streams */ export declare class OutputsCommandsCollector { private parseStdout; private parseStderr; readonly commandsStore: CommandsStore; readonly stdoutParsingStream?: CommandsParsingStream; readonly stderrParsingStream?: CommandsParsingStream; readonly commandsWarnings: Map; constructor(parseStdout: boolean, parseStderr: boolean); waitUntilStreamsAreClosed(): Promise; get commandWarnings(): CommandWarning[]; private checkDeprecation; } //# sourceMappingURL=OutputsCommandsCollector.d.ts.map