import { IRunnerOptions } from "../../Options"; import { IFeatureOutcome } from "../Executor"; export declare enum ReporterType { Stdout = 0, JUnit = 1, BridgeJSON = 2 } export declare function reportFeature(type: ReporterType, featureOutcome: IFeatureOutcome, options: IRunnerOptions): Promise;