import { type TestStepFinished } from '@cucumber/messages'; import type { IFormatterOptions } from './index'; import SummaryFormatter from './summary_formatter'; type ITestStepFinished = TestStepFinished; /** * @deprecated the built-in `progress` formatter is now plugin-based and no longer uses this class; see https://github.com/cucumber/cucumber-js/blob/main/docs/deprecations.md */ export default class ProgressFormatter extends SummaryFormatter { static readonly documentation: string; constructor(options: IFormatterOptions); logProgress({ testStepResult: { status } }: ITestStepFinished): void; } export {};