import { HttpTestError } from './HttpTestError'; /** * Represents an error that occurs during parsing. */ export declare class ParserError extends HttpTestError { readonly code = "PARSER_ERROR"; constructor(message: string, context?: Record); }