import type { WriteClientPartContext } from './types.js'; /** * Generate Server 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.absoluteFactoriesFile 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 * @param {string[]} args.allowedServerMethods Http methods for which server resolvers will be generated */ export declare const writeClientServers: ({ client, absoluteFactoriesFile, templates, outputPath, indent, allowImportingTsExtensions, allowedServerMethods, }: WriteClientPartContext) => Promise;