/// <reference types="react" />
import { BannerProps } from './Banner.types';
/**
 * Displays relevant system-wise information to the user
 */
declare const Banner: ({ color, children }: BannerProps) => JSX.Element;
export default Banner;
