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 Code component. * @public */ export interface CodeProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { } /** * Use the `Code` component to display snippets of code inline. If you want to * display a block of code, use the * {@link https://developer.dynatrace.com/design/components/content/CodeSnippet/ | `CodeSnippet`} * component instead. * @public */ export declare const Code: (props: CodeProps & import("react").RefAttributes) => import("react").ReactElement | null;