import React from "react"; import type { CommonSelectProps } from "./Combobox"; import type { FormFieldProps } from "../FormField/FormField"; type SingleSelectProps = CommonSelectProps & Pick & { value: string; onChange: (e: React.ChangeEvent) => void; }; export declare const SingleSelect: ({ options, name, value, placeholder, emptyStateMessage, hasError, filterMethod, onChange, onBlur, onFocus, maxHeight, autoComplete, disabled, label, optionsListWidth, portalContainer, readOnly, "aria-describedby": ariaDescribedBy, privateProps, ...ariaAttributes }: SingleSelectProps) => React.ReactElement; export {};