/** * @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 */ invalid?: boolean; } & PropsWithChildren>; /** * @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 */ invalid?: boolean; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;