import * as run from "./index.js"; /** simulates console.log to collect output from a running action */ export declare class OutputCollector { /** collects the received output */ content: string[]; /** appends to the output with a newline */ log(...args: any[]): void; /** returns the "log" function to be used by actions */ logFn(): run.LogFn; /** returns the currently accumulated output */ toString(): string; } //# sourceMappingURL=output-collector.d.ts.map