/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { Dispatch, SetStateAction } from 'react'; import type { InvalidFormAlertProps } from './InvalidFormAlert'; export declare const InvalidFormAlertWithErrors: import("react").ForwardRefExoticComponent<{ /** Whether the component has set focus once. */ hasFocusedOnce: boolean; /** Callback to let parent component know whether focus has been set once. */ setHasFocusedOnce: Dispatch>; } & Omit & import("react").RefAttributes>;