import * as React from 'react'; import { TooltipCommonProps } from '../common'; import {PropsWithChildren} from "react"; export type InfoIconSize = 'small' | 'medium'; export interface InfoIconProps { content: React.ReactNode; size?: InfoIconSize; dataHook?: string; className?: string; tooltipProps?: TooltipCommonProps; } declare const InfoIcon: React.FC>; export default InfoIcon;