//
export type BannerSize = 'small' | 'medium' |'large';
export type BannerType = 'info' | 'warning' | 'success' | 'error'
export interface IBannerProps extends React.HTMLAttributes {
onClose?: React.MouseEventHandler;
size?: BannerSize;
children: React.ReactNode;
type: BannerType;
}
export var Banner: React.ComponentType;