/** * Fly generation pipeline — uses core generatePipeline with fly-specific * fetch, parse, naming, and generation callbacks. */ import { type GenerateOptions, type GenerateResult } from "@intentius/chant/codegen/generate"; export type { GenerateResult }; /** * Run the full fly 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