import { FC } from 'react'; import { AlertProps } from 'reactstrap'; declare type Props = { icon?: boolean; dismissible?: boolean; onToggle?: (open: boolean) => void; } & AlertProps; /** * Extension to Bootstrap [Alert](https://getbootstrap.com/docs/4.3/components/alert/) * adding icon support and onToggle callback when dismissed. */ declare const Alert: FC; export default Alert;