import { Client } from '../client/interfaces/Client'; import { HttpClient } from '../index'; import { Templates } from './readHandlebarsTemplates'; /** * Generate OpenAPI configuration file "OpenAPI.ts" * @param client Client object, containing, models, schemas and services. * @param templates The loaded handlebar templates. * @param outputPath Directory to write the generated files to. * @param httpClient The selected httpClient (fetch or XHR). */ export declare function writeClientSettings(client: Client, templates: Templates, outputPath: string, httpClient: HttpClient): void;