/**
 * Represents a Cucumber.js formatter
 *
 * ## Learn more
 *
 * - [Cucumber formatters](https://github.com/cucumber/cucumber-js/blob/master/docs/cli.md#built-in-formatters)
 *
 * @group Integration
 */
export declare class CucumberFormat {
    readonly value: string;
    readonly formatter: string;
    readonly output: string;
    /**
     * @param value
     *  Cucumber format expression, like `pretty` or `json:out.json`
     */
    constructor(value: string);
    /**
     * See https://github.com/cucumber/cucumber-js/blob/master/src/cli/option_splitter.ts
     *
     * @param format
     */
    private static split;
}
//# sourceMappingURL=CucumberFormat.d.ts.map