import { ValidationBundler } from '../bundlers'; import { Validated } from './index'; export interface Validator { bundler: ValidationBundler; target: T; } export declare class ValidationEngine { validate(validators: Validator[]): Validated; }