export interface BannerProps { /** The content inside the banner */ text: string; /** Apperance of banner, determines icon and background */ appearance: 'success' | 'warning' | 'error'; } declare const Banner: ({ text, appearance, ...other }: BannerProps) => JSX.Element; export default Banner;