import { type DataTestId, type DOMProps, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @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; };