/** * @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. */ color?: 'inverse'; } & PropsWithChildren>; /** * @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. */ color?: "inverse"; } & BlockquoteHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;