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 Strikethrough component. * @public */ export interface StrikethroughProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { } /** * The `Strikethrough` component renders text with a line through it. Use it to * represent things that are no longer relevant or accurate. * @public */ export declare const Strikethrough: (props: StrikethroughProps & import("react").RefAttributes) => import("react").ReactElement | null;