/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type MetadataProps = { /** Changes the text colour for readability on a dark background. */ readonly color?: 'inverse'; /** The size of the text. */ readonly size?: 'small'; } & Readonly>>; /** * Supporting information about a piece of content, such as the date it was published or the categories it belongs to. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-text-metadata--docs Metadata docs at Amsterdam Design System} */ export declare const Metadata: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ readonly color?: "inverse"; /** The size of the text. */ readonly size?: "small"; } & Readonly>> & import("react").RefAttributes> & { Separator: import("react").ForwardRefExoticComponent> & import("react").RefAttributes>; };