import React, { ReactNode } from 'react'; interface InfoBoxProps extends Omit, 'className' | 'title'> { children?: ReactNode; className?: string; color?: string; icon?: string; title?: string | ReactNode; vertical?: boolean; } declare const InfoBox: { ({ children, className, color, icon, title, vertical, ...props }: InfoBoxProps): JSX.Element; displayName: string; }; export default InfoBox;