import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren, type ReactNode } from 'react'; type ObjectTermType = { text: ReactNode; styleType?: 'blockTitle' | 'subBlockTitle' | 'subSubBlockTitle'; }; type AbstractProps = PropsWithChildren<{ term: ReactNode | ObjectTermType; fullWidth?: boolean; maxColumns?: number; }>; type Props = AbstractProps & Omit, keyof AbstractProps>; export declare const DefinitionListItem: FC; export {};