/** * Classify whether a client error should be reported to Sentry (unexpected) * vs domain/expected HTTP failures (logger only / breadcrumbs). */ /** * Returns true when the error should be captured by Sentry (5xx, network, unknown). * Returns false for domain 4xx with errorCode, validation errors, and 409 conflicts. */ export declare function isUnexpectedClientError(error: unknown): boolean; //# sourceMappingURL=isUnexpectedClientError.d.ts.map