/** * Backend AST Printer – Declarations * * Type declarations (class, struct, interface, enum), members * (fields, properties, methods, constructors, delegates), * and compilation-unit / namespace printing. */ import type { CSharpMemberAst, CSharpTypeDeclarationAst, CSharpCompilationUnitAst } from "./types.js"; export declare const printMember: (member: CSharpMemberAst, indent: string) => string; export declare const printTypeDeclaration: (decl: CSharpTypeDeclarationAst, indent: string) => string; export declare const printCompilationUnit: (unit: CSharpCompilationUnitAst) => string; //# sourceMappingURL=printer-declarations.d.ts.map