/** * Azure ARM generation pipeline — uses core generatePipeline * with Azure-specific fetch, parse, naming, and generation callbacks. */ import { type GenerateOptions, type GenerateResult } from "@intentius/chant/codegen/generate"; export type { GenerateOptions, GenerateResult }; /** * Run the full Azure generation pipeline. */ export declare function generate(opts?: GenerateOptions): Promise; /** * Write generated artifacts to disk. */ export declare function writeGeneratedFiles(result: GenerateResult, baseDir: string): void; //# sourceMappingURL=generate.d.ts.map