/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export declare const descriptionListTermsWidths: readonly ["narrow", "medium", "wide"]; type DescriptionListTermsWidth = (typeof descriptionListTermsWidths)[number]; export type DescriptionListProps = { /** Changes the text colour for readability on a dark background. */ readonly color?: 'inverse'; /** The width of the column containing the terms. */ readonly termsWidth?: DescriptionListTermsWidth; } & Readonly>>; /** * A collection of terms and their descriptions. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-text-description-list--docs Description List docs at Amsterdam Design System} */ export declare const DescriptionList: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ readonly color?: "inverse"; /** The width of the column containing the terms. */ readonly termsWidth?: DescriptionListTermsWidth; } & Readonly>> & import("react").RefAttributes> & { Description: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Section: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Term: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; }; export {};