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