import Type from '../types/Type'; import RuntimeTypeErrorItem from './RuntimeTypeErrorItem'; import { IdentifierPath } from '../Validation'; export default class InvalidLengthErrorItem extends RuntimeTypeErrorItem { static readonly code: 'INVALID_LENGTH'; readonly valueAtPath: Array; readonly expectedLength: number; constructor(path: IdentifierPath, valueAtPath: Array, expectedTypeAtPath: Type, expectedLength: number); messageAtPath(): string; toString(): string; }