import ValidatorOptions from "./ValidatorOptions";
import { ValidationError } from "../errors";
/**
 * ValidatorOptionsExtended - interface for Validator options, extended with nested errors.
 * @interface
 * @author Danil Andreev
 */
export default interface ValidatorOptionsExtended extends ValidatorOptions {
    /**
     * nested - nested items errors.
     */
    nested?: readonly ValidationError[];
}
