/** * TOML parser. * * Handles the TOML subset used by Chant lexicons: tables, arrays of tables, * key-value pairs, inline tables, inline arrays, strings, numbers, booleans. */ /** * Parse a TOML document string into a plain object. * * Uses a built-in parser that handles the common TOML subset used by tool * configuration files (tables, dotted keys, inline tables, and arrays). */ export declare function parseTOML(content: string): Record; //# sourceMappingURL=toml-parse.d.ts.map