/** * Line-level parsing functions */ import type { TONLParseContext, TONLValue } from '../types.js'; /** * Parse a primitive value from a string * Handles null, undefined, booleans, numbers, and quoted/unquoted strings * @param value Raw string value * @param context Parse context * @returns Parsed primitive value */ export declare function parsePrimitiveValue(value: string, context: TONLParseContext): TONLValue; //# sourceMappingURL=line-parser.d.ts.map