import { ValidationFailure } from '../error'; import { Validator } from '../interface'; export declare class TupleValidator implements Validator { readonly tuple: Validator[]; private invalidLengthMessage?; constructor(tuple: Validator[]); private getInvalidLengthMessage; cast(value: unknown): ValidationFailure | any[]; validate(value: unknown): ValidationFailure | undefined; phantom(): any[]; } //# sourceMappingURL=tuple.d.ts.map