import { Background, Feature, Rule } from "gherkin-ast"; import { PreCompiler, SingleControlType } from "./PreCompiler"; import { PartialProcessor } from "./Processor"; export declare class BackgroundProcessor
extends PartialProcessor { private stepProcessor; constructor(preCompiler?: Partial); preFilter(e: Background, p: P): Promise; postFilter(e: Background, p: P): Promise; process(e: Background, p: P): Promise>; }