import * as React from "react"; declare type BannerType = "info" | "warning" | "success" | "danger"; interface BannerProps { /** name of the prop */ title?: string; /** color of the prop */ text?: string; /** style of the prop */ style?: React.CSSProperties; /** size of the prop */ size?: number; icon?: string; subText?: string; noBorder?: boolean; type?: BannerType; onClick?: () => void; withIcon?: boolean; } export declare const InfoBanner: ({ title, text, style, size, icon, noBorder, type, onClick, withIcon }: BannerProps) => JSX.Element; export default InfoBanner;