import { BadRequestException } from '@nestjs/common'; import { ValueErrorIterator } from '@sinclair/typebox/errors'; import type { ValidatorType } from './types.js'; export declare class TypeboxValidationException extends BadRequestException { constructor(type: ValidatorType, errors: ValueErrorIterator); }