import Issue from "./Issue.js"; /** * Represents an error thrown for a specific property during validation. */ declare class PropertyIssue extends Error { /** * Concerned property. */ readonly property: string; /** * Error type name. */ name: string; /** * Create a new error instance. * * @param property - Concerned property. * @param issue - Property validation issue. */ constructor(property: string, issue: Issue); } export default PropertyIssue;