/** * TONL Schema Language (TSL) parser */ import type { TONLSchema } from './types.js'; /** * Parse a TONL schema file */ export declare function parseSchema(content: string): TONLSchema; /** * Load schema from file * * BUG-NEW-019 FIX: Added error handling with context for file operations */ export declare function loadSchemaFromFile(filePath: string): Promise; //# sourceMappingURL=parser.d.ts.map