/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; type HintAndOptionalProps = { /** Show a custom hint text. */ hint?: string; inFieldSet?: boolean; /** Appends the text '(niet verplicht)' to the label or legend if no hint is provided. Use when the associated inputs are optional. */ optional?: boolean; }; export type HintProps = HintAndOptionalProps & PropsWithChildren>; export declare const Hint: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; export {};