import { PropsWithChildren } from 'react'; import IAIInformationalPopover from '../../../common/components/IAIInformationalPopover'; import { useTranslation } from 'react-i18next'; export const ParamModelPopover = (props: PropsWithChildren) => { const { t } = useTranslation(); return ( ); };