/** * Content-level parsing - orchestrates parsing of entire TONL document */ import type { TONLParseContext, TONLObject } from '../types.js'; /** * Parse the main content of a TONL document * Orchestrates parsing of all top-level structures * @param content TONL content (without @tonl headers) * @param context Parse context * @returns Parsed object tree */ export declare function parseContent(content: string, context: TONLParseContext): TONLObject; //# sourceMappingURL=content-parser.d.ts.map