/**
 * @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<OlHTMLAttributes<HTMLOListElement>>;
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<HTMLOListElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLOListElement>> & {
    Item: import("react").ForwardRefExoticComponent<import("react").LiHTMLAttributes<HTMLLIElement> & {
        children?: import("react").ReactNode | undefined;
    } & import("react").RefAttributes<HTMLLIElement>>;
};
