import { DataTestId } from '../../core/types/data-props.js'; import { DOMProps } from '../../core/types/dom.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface TerminologyDescriptionProps extends DOMProps, WithChildren, StylingProps, DataTestId { } /** * Adds the description for the terminology to help the user. * @public */ export declare const Description: { (props: TerminologyDescriptionProps): import("react/jsx-runtime").JSX.Element; displayName: string; };