/** Small deterministic TOML reader for project declarations. No evaluation or * interpolation. Optional field projection validates only selected values; * lexical boundaries and resource limits always remain enforced. */ export type TomlValue = string | number | boolean | TomlValue[] | TomlTable; export interface TomlTable { [key: string]: TomlValue; } export declare function parseManifestToml(text: string, fields?: readonly (readonly string[])[]): TomlTable; export declare function manifestTable(value: unknown): TomlTable; export declare function manifestStrings(value: unknown): string[] | undefined; //# sourceMappingURL=manifest-toml.d.ts.map