/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { PropsWithChildren, SelectHTMLAttributes } from 'react'; export type SelectProps = { /** Whether the value fails a validation rule. */ invalid?: boolean; } & PropsWithChildren, 'aria-invalid'>>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-select--docs Select docs at Amsterdam Design System} */ export declare const Select: import("react").ForwardRefExoticComponent<{ /** Whether the value fails a validation rule. */ invalid?: boolean; } & Omit, "aria-invalid"> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Group: import("react").ForwardRefExoticComponent>; Option: import("react").ForwardRefExoticComponent>; };