/** Options accepted by generate(). */ export interface GenerateOptions { /** Path to config file. */ configPath?: string; /** Overrides config.input_openapi. Resolved from shell CWD before this call. */ inputOverride?: string; /** Overrides config.output. Resolved from shell CWD before this call. */ outputOverride?: string; } export declare function generate(cwd: string, opts?: GenerateOptions | string): Promise; //# sourceMappingURL=generator.d.ts.map