declare abstract class CommonError {
    title?: string | null;
    detail?: string | null;
}

export { CommonError };
