/** * Enum representing different sources of statuses and errors in the system. * This categorization ensures that statuses are clearly linked to their origin, * preventing confusion between similar issues from different layers (e.g., 404 from API vs. 404 from Frontend). */ export declare enum ErrorBehavior { /** Errors and statuses from Server-Side Rendering (SSR) */ SSR = "ssr", /** Errors and statuses from client-side execution (UI, fetch failures, etc.) */ FE = "frontend", /** Errors and statuses occurring in middleware before reaching pages or APIs */ BE = "backend" }