import { WriteClientPartContext } from './types.js'; /** * Generate Routes 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) */ export declare const writeClientRoutes: ({ client, templates, outputPath, indent, }: WriteClientPartContext) => Promise;