/** * TONL Schema validator */ import type { TONLSchema, ValidationResult } from './types.js'; import type { TONLValue } from '../types.js'; /** * Validate TONL data against a schema */ export declare function validateTONL(data: TONLValue, schema: TONLSchema): ValidationResult; //# sourceMappingURL=validator.d.ts.map