import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: definitionDescription** * * The description of the `definitionTerm` within the same `definitionListItem`. * * Each `definitionListItem` may have one - or more - `definitionDescription`s. Note that it's possible for different rows to have a differing number of `definitionDescription`s - the ones that have fewer should be handled has having the same number of columns as the ones with the maximum number of elements, padded on the right with empty `definitionDescription`s. * * Children: `[any*]` * * @param children * @param className * @param props * @constructor */ export declare function DefinitionDescription({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element;