UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

13 lines (12 loc) 598 B
/** * @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<SetStateAction<boolean>>; } & Omit<InvalidFormAlertProps, "errorCountLabel"> & import("react").RefAttributes<HTMLDivElement>>;