/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { PropsWithChildren, SelectHTMLAttributes } from 'react'; export type SelectProps = { /** Whether the value fails a validation rule. */ readonly invalid?: boolean; } & Readonly, 'aria-invalid'>>>; /** * A form control that allows users to select one or more options from a list. * * @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. */ readonly invalid?: boolean; } & Readonly, "aria-invalid">>> & import("react").RefAttributes> & { Group: import("react").ForwardRefExoticComponent>> & import("react").RefAttributes>; Option: import("react").ForwardRefExoticComponent>> & import("react").RefAttributes>; };