/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; type HintAndOptionalProps = { /** Show a custom hint text. */ readonly hint?: string; readonly inFieldSet?: boolean; /** Appends the text '(niet verplicht)' to the label or legend if no hint is provided. Use when the associated inputs are optional. */ readonly optional?: boolean; }; export type HintProps = Readonly & Readonly>>; /** * Optional hint text or an 'optional' indicator associated with a form field. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-label--docs Label docs at Amsterdam Design System} */ export declare const Hint: import("react").ForwardRefExoticComponent & Readonly>> & import("react").RefAttributes>; export {};