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