export interface IBanner {
  width?: number | string;
  height?: number | string;
  color?: 'primary' | 'secondary' | 'custom' | string;
}

declare const Banner: React.ComponentType<IBanner>;

export default Banner;