import type { AriaLabelingProps } from '../../core/types/a11y-props.js'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import type { DataTestId } from '../../core/types/data-props.js'; import type { MaskingProps } from '../../core/types/masking-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; import type { WithChildren } from '../../core/types/with-children.js'; /** * The props for the Emphasis component. * @public */ export interface EmphasisProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { } /** * The `Emphasis` component adds visual and semantic emphasis to stressed or essential content. * @public */ export declare const Emphasis: (props: EmphasisProps & import("react").RefAttributes) => import("react").ReactElement | null;