import { PreCompiler } from "gherking";
import { Document } from "gherkin-ast";
export declare type ReplacerConfig = {
    [key: string]: string;
};
export default class Replacer implements PreCompiler {
    config: ReplacerConfig;
    constructor(config: ReplacerConfig);
    onDocument(d: Document): void;
}
