/**
 * @license EUPL-1.2+
 * Copyright (c) 2021 Robbert Broersma
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes, PropsWithChildren, ReactNode } from 'react';
export type ParagraphProps = {
    /** Changes the text colour for readability on a dark background. */
    color?: 'inverse';
    /** The size of the text. */
    size?: 'small' | 'large';
} & PropsWithChildren<HTMLAttributes<HTMLParagraphElement>>;
/**
 * @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. */
    color?: "inverse";
    /** The size of the text. */
    size?: "small" | "large";
} & HTMLAttributes<HTMLParagraphElement> & {
    children?: ReactNode | undefined;
} & import("react").RefAttributes<HTMLParagraphElement>>;
