export interface ProblemDetails {
    type: string;
    title: string;
    status: number;
    detail?: string;
    instance?: string;
    timestamp: string;
    traceId: string;
    errors?: Record<string, any>[];
    [key: string]: any;
}
