import { verifyMvfIntegrity } from './integrity.js'; import { getMvfValidationErrors, validateMvf } from './validate.js'; /** * A convenience method for checking that some value which is supposed to be an MVF: * - Matches the MVF schema, and * - Maintains referential integrity * * This will not throw exceptions for bad MVFs. For detailed information and more granular error handling, use * {@link validateMvf} and {@link verifyMvfIntegrity} separately. */ declare const check: (mvf: unknown) => boolean; export { check, validateMvf, verifyMvfIntegrity, getMvfValidationErrors }; export * from './no-validator.js'; //# sourceMappingURL=index.d.ts.map