import { PropTypes } from '@krowdy/kds-core'; interface BackgroundAlertProps { color? : PropTypes.Color; anchorEl?: null | Element; placement?: string; arrow?: boolean; } declare const BackgroundAlert: React.ComponentType; export default BackgroundAlert;