import { ReactNode } from 'react'; import { IconProps } from '../Icon'; export interface InfoBannerProps { /** The name of the icon to display in the banner. */ iconName?: IconProps['name']; /** Content or message as sting or react component. */ content?: string | ReactNode; } export declare const InfoBanner: ({ iconName, content }: InfoBannerProps) => import("react").JSX.Element;