import { FC } from 'react'; type BannerProps = { message: string; icon?: any; onDismiss: () => void; action?: boolean; actionLabel?: string; onAction?: () => void; }; declare const Banner: FC; export default Banner;