import type { FocusEventHandler, ReactElement } from "react"; import type { FormFieldProps } from "../FormField/FormField"; import type { SelectWithCustomTriggerProps } from "./SelectWithCustomTrigger"; export type SelectProps = { placeholder?: string; hasError?: boolean; size?: "s" | "m"; "aria-describedby"?: string; onFocus?: FocusEventHandler; onBlur?: FocusEventHandler; } & Omit & FormFieldProps; export declare function Select({ options, name, value, placeholder, hasError, optionsListWidth, maxHeight, disabled, portalContainer, readOnly, label, labelHint, hideLabel, hint, errorMessages, size, "data-e2e-test-id": dataE2eTestId, "aria-describedby": ariaDescribedBy, onChange, onFocus, onBlur, ...ariaAttributes }: SelectProps): ReactElement;