/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { OlHTMLAttributes, PropsWithChildren } from 'react'; export type OrderedListProps = { /** Changes the text colour for readability on a dark background. */ color?: 'inverse'; /** Whether the list items show a marker. */ markers?: boolean; /** The size of the text. */ size?: 'small'; } & PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-text-ordered-list--docs Ordered List docs at Amsterdam Design System} */ export declare const OrderedList: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ color?: "inverse"; /** Whether the list items show a marker. */ markers?: boolean; /** The size of the text. */ size?: "small"; } & OlHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Item: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };