/************************* * Types & Constants *************************/ export interface ExceptionListProps extends React.ComponentProps<"div"> { variant?: "success" | "warning" | "danger" | "info"; icon?: React.ReactNode; description?: string; children?: React.ReactNode; } /************************* * Main Component *************************/ declare const ExceptionList: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default ExceptionList;