interface ErrorCardProps { /** Title shown in the header */ title: string; /** Error message or details to show when expanded */ details?: string; /** Additional class names */ className?: string; } /** * A collapsible error card that shows a title with an error icon, * and expands to reveal details when clicked. */ export declare function ErrorCard({ title, className, details, }: ErrorCardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=error-card.d.ts.map