import { KeycloakError } from '../errors/keycloak-errors.js'; export interface ErrorDisplayProps { /** * The error to display */ error: KeycloakError; /** * Callback function called when the user clicks retry */ onRetry?: () => void; /** * Whether to show technical details by default */ showDetails?: boolean; /** * Custom CSS class name */ className?: string; } /** * React component for displaying Keycloak errors with user-friendly messages. * * @example * ```tsx * provider.retry()} * /> * ``` */ export declare function ErrorDisplay({ error, onRetry, showDetails, className, }: ErrorDisplayProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=error-display.d.ts.map