/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { BlockquoteHTMLAttributes, PropsWithChildren } from 'react'; export type BlockquoteProps = { /** Changes the text colour for readability on a dark background. */ readonly color?: 'inverse'; } & Readonly>>; /** * Marks a passage as a quotation, set apart from the surrounding text. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-text-blockquote--docs Blockquote docs at Amsterdam Design System} */ export declare const Blockquote: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ readonly color?: "inverse"; } & Readonly>> & import("react").RefAttributes>;