/** * @license EUPL-1.2+ * Copyright (c) 2021 Robbert Broersma * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type ParagraphProps = { /** Changes the text colour for readability on a dark background. */ readonly color?: 'inverse'; /** The size of the text. */ readonly size?: 'small' | 'large'; } & Readonly>>; /** * Represents a paragraph of running text, form instructions, and other standalone text fragments. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-text-paragraph--docs Paragraph docs at Amsterdam Design System} */ export declare const Paragraph: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ readonly color?: "inverse"; /** The size of the text. */ readonly size?: "small" | "large"; } & Readonly>> & import("react").RefAttributes>;