export declare class ApplicationError { message: string; date: Date; code?: string; componentName?: string; } export declare class InternalError extends ApplicationError { constructor(); } export declare class ValidationError extends ApplicationError { entity: string; property: string; invalidValue: string; constructor(); }