/** * TypeScript declaration file generator — produces index.d.ts with all resource classes. * * Output includes: * - Resource classes with typed constructors and readonly attributes * - Property type classes * - Enum union types * - Static content (ARM intrinsics, Azure pseudo-parameters, common interfaces) */ import type { ArmSchemaParseResult } from "../spec/parse.js"; import type { NamingStrategy } from "./naming.js"; /** * Generate the complete .d.ts file content. */ export declare function generateTypeScriptDeclarations(results: ArmSchemaParseResult[], naming: NamingStrategy): string; //# sourceMappingURL=generate-typescript.d.ts.map