import { WriteClientPartContext } from './types.js'; /** * Generate Data Types 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 {string} args.indent Indentation options (4, 2 or tab) * @param {boolean} args.allowImportingTsExtensions Generate .ts extentions on imports enstead .js */ export declare const writeClientDataTypes: ({ client, templates, outputPath, indent, allowImportingTsExtensions, }: WriteClientPartContext) => Promise;