import type { DriverInterface } from "../driver"; import type { ManifestInterface } from "./interface"; export type ValidationResult = { valid: true; warnings: string[]; } | { valid: false; warnings: string[]; errors: string[]; }; export declare const validateManifest: (manifest: ManifestInterface, driver?: DriverInterface) => Promise;