import { Service } from '../client/interfaces/Service'; import { Templates } from './readHandlebarsTemplates'; /** * Generate Services using the Handlebar template and write to disk. * @param services Array of Services to write. * @param templates The loaded handlebar templates. * @param outputPath Directory to write the generated files to. * @param useOptions Use options or arguments functions. */ export declare function writeClientServices(services: Service[], templates: Templates, outputPath: string, useOptions: boolean): void;