/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { Dispatch, SetStateAction } from 'react'; import type { InvalidFormAlertProps } from './InvalidFormAlert'; /** * A variant of Invalid Form Alert that lists each error as a link to the affected field. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-invalid-form-alert--docs Invalid Form Alert docs at Amsterdam Design System} */ export declare const InvalidFormAlertWithErrors: import("react").ForwardRefExoticComponent<{ /** Whether the component has set focus once. */ readonly hasFocusedOnce: boolean; /** Callback to let parent component know whether focus has been set once. */ readonly setHasFocusedOnce: Dispatch>; } & Readonly> & import("react").RefAttributes>;