export interface IBanner { width?: number | string; height?: number | string; color?: 'primary' | 'secondary' | 'custom' | string; } declare const Banner: React.ComponentType; export default Banner;