import { RunOptions } from "../../runOptions/RunOptions"; import { ActionConfigStoreOptional } from "../../runOptions/ActionConfigStore"; import { CommandWarning, RunnerWarning } from "./RunnerWarning"; export declare class WarningsCollector { private readonly runOptions; private readonly actionConfig; private warnings; constructor(runOptions: RunOptions, actionConfig: ActionConfigStoreOptional); setCommandWarnings(warnings: CommandWarning[]): WarningsCollector; /** * Get collected warnings and print if options.outputOptions.data.printRunnerWarnings is set */ getAndPrint(): RunnerWarning[]; /** * Get collected warnings */ get(): RunnerWarning[]; /** * Print if options.outputOptions.data.printRunnerWarnings is set */ print(): void; } //# sourceMappingURL=WarningsCollector.d.ts.map