import { FC, PropsWithChildren } from 'react'; export type EntityDescriptionProps = PropsWithChildren<{ container?: Element; resizeInfoBox?: boolean; }>; declare const EntityDescription: FC; export default EntityDescription;