import React from 'react'; import { THEME_NAME_MAP } from "./theme/themeMap"; import { STATE_MAP } from "./theme/stateColors"; export declare type InfoBarProps = { theme?: typeof THEME_NAME_MAP[keyof typeof THEME_NAME_MAP]; type?: typeof STATE_MAP[keyof typeof STATE_MAP]; children: React.ReactNode; className?: string; center?: boolean; margin?: string; color?: string; backgroundColor?: string; fontSize?: string; lineHeight?: string | number; withIcon?: boolean; Icon?: React.ComponentType<{ color: string; size: string; }> | React.ReactNode; iconColor?: string; transparent?: boolean; shortened?: boolean; rounded?: boolean; onClose?: () => void; }; declare function InfoBar({ theme, type, children, className, center, margin, color, backgroundColor, fontSize, lineHeight, withIcon, Icon, iconColor, transparent, shortened, rounded, onClose, }: InfoBarProps): JSX.Element; export default InfoBar;