import { AthenaErrorUi, AthenaErrorUiKind } from '../types/errors.js'; export declare function toAthenaErrorUiKind(input: unknown): AthenaErrorUiKind; /** * Normalize fetch / Better Auth / Rust envelope / React Query / unknown Error * into a thin AthenaError UI mapping before any view reads it. */ export declare function toAthenaUiError(input: unknown): AthenaErrorUi; /** @see {@link toAthenaUiError} */ export declare const normalizeAuthUiError: typeof toAthenaUiError;