import { PropertyIssue } from "@n7e/validation"; /** * Represents a set of issues raised during validation. */ declare class Issues extends Error { /** * Arbitrary set of property issues. */ readonly issues: Array; /** * Error type name. */ name: string; /** * Create a new error instance. * * @param issues - Arbitrary set of property issues. */ constructor(issues: Array); /** * Produce a JSON representation of the encountered issues. * * @returns JSON representation of the encountered issues. */ toJSON(): any; } export default Issues;