import { FC } from 'react'; import { IAlertProps } from '../alert'; export declare type BannerCloseIconColor = 'grey' | 'white'; export declare type IBannerProps = Omit & { backgroundImage: string; }; export declare const Banner: FC; export default Banner;