import { ParseConfig } from "gherkin-ast"; import { FormatOptions } from "gherkin-io"; interface CompilerConfig { path?: string; configuration?: { [name: string]: any; }; } export interface CLIConfig { config?: string; source?: string; base?: string; destination?: string; verbose?: boolean; clean?: boolean; install?: boolean; } export interface Config extends CLIConfig { compilers: CompilerConfig[]; formatOptions?: FormatOptions; parseConfig?: ParseConfig; } export interface LoadOptions { install?: boolean; } export declare function run(): Promise; export {};