import type { Model } from '../client/interfaces/Model'; import type { HttpClient } from '../HttpClient'; import type { Indent } from '../Indent'; import type { Templates } from './registerHandlebarTemplates'; /** * Generate Models using the Handlebar template and write to disk. * @param models Array of Models to write * @param templates The loaded handlebar templates * @param outputPath Directory to write the generated files to * @param httpClient The selected httpClient (fetch, xhr, node or axios) * @param useUnionTypes Use union types instead of enums * @param indent Indentation options (4, 2 or tab) */ export declare const writeClientModels: (models: Model[], templates: Templates, outputPath: string, httpClient: HttpClient, useUnionTypes: boolean, indent: Indent) => Promise;