import { ValidatorInterface } from './validator-interface'; import { ManifestObject, ManifestValidationResult, LintOptions } from '../types'; import { ManifestSchema } from '../schema/manifest'; type ManifestApp = { app: ManifestSchema['app']; }; export declare class RuntimeVersionValidator implements ValidatorInterface | undefined, ManifestApp> { private readonly lintOptions; constructor(lintOptions: LintOptions); validate(manifest: ManifestObject | undefined): Promise>; } export {}; //# sourceMappingURL=runtime-version-validator.d.ts.map