interface ValidationErrorProps { code: string; message: string; path: string; details: any; } export declare abstract class ValidationErrorBase { protected props: ValidationErrorProps; protected constructor(props: ValidationErrorProps); get code(): string; get message(): string; get path(): string; get details(): any; protected validate(): void; } export {}; //# sourceMappingURL=validation-error.base.d.ts.map