import type { Options } from 'code-block-writer'; import type { PuristaConfig } from '../../loadPuristaConfig.js'; /** * Generate the builder file, which contains the creation of the service builder. * This basic service builder is than used in the service file, where commands and services are added. * The reason for splitting up: prevent cycling dependencies, as the command and subscription builders are created by this service builder. */ export declare const getServiceBuilderFileContent: (input: { serviceName: string; serviceVersion: string; puristaConfig: PuristaConfig; codeWriterOptions?: Partial; }) => string; //# sourceMappingURL=getServiceBuilderFileContent.d.ts.map