import { WriteClientPartContext } from './types.js'; /** * Generate Schemas using the Handlebar template and write to disk. * @param {Object} args * @param {Object} args.client OpenApi client * @param {Object} args.templates The loaded handlebar templates * @param {string} args.outputPath Directory to write the generated files to * @param {boolean} args.useUnionTypes Use union types instead of enums * @param {boolean} args.allowImportingTsExtensions Generate .ts extentions on imports enstead .js * @param {string} args.indent Indentation options (4, 2 or tab) */ export declare const writeClientSchemas: ({ client, templates, outputPath, useUnionTypes, allowImportingTsExtensions, indent, }: WriteClientPartContext) => Promise;