/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type FieldProps = { /** Whether the field has an input with a validation error. */ readonly invalid?: boolean; } & Readonly>>; /** * Wraps a single input and its related elements. May indicate that the input has a validation error. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-field--docs Field docs at Amsterdam Design System} */ export declare const Field: import("react").ForwardRefExoticComponent<{ /** Whether the field has an input with a validation error. */ readonly invalid?: boolean; } & Readonly>> & import("react").RefAttributes>;