export type AuthErrorPresentation = "inline" | "silent" | "toast";
/**
 * Resolve how a query or mutation error should be presented by auth UI hosts.
 *
 * Errors default to a toast for backwards compatibility. Components that
 * render their own recovery UI use `inline`, while optional enrichment
 * requests use `silent`.
 */
export declare function getAuthErrorPresentation(meta: unknown): AuthErrorPresentation;
