/** * `openlore manifest validate ` — schema-check an existing manifest. * * Validates against the canonical JSON Schema shipped with OpenLore * (schemas/openlore-manifest-v1.json), using the small in-repo validator * rather than a heavyweight dependency. */ import { type ValidationError } from './schema-validator.js'; /** Absolute path to the vendored manifest JSON Schema (ships in the package). */ export declare function manifestSchemaPath(): string; export declare function loadManifestSchema(): Record; /** Validate a parsed manifest object; returns the (possibly empty) error list. */ export declare function validateManifest(manifest: unknown): ValidationError[]; export declare function runManifestValidate(path: string): number; //# sourceMappingURL=validate.d.ts.map