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 Blockquote component. * @public */ export interface BlockquoteProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { /** * A URL that designates a source document or message for the information quoted. * This attribute is intended to point to information explaining the context for the quoted content. */ cite?: string; } /** * The `Blockquote` component wraps longer text blocks and indicates that the passage is quoted from another source. * @public */ export declare const Blockquote: (props: BlockquoteProps & import("react").RefAttributes) => import("react").ReactElement | null;