import { Props } from 'react-select'; export interface BaseOption { /** * The programmatic/system value of the option. * * Used for equality tests to check if this option is selected. We only support string * values. */ value: string; } export interface ReactSelectWrapperProps extends Props { options: O[]; formikValue: IsMulti extends true ? string[] : string | null; isRequired?: boolean; isInvalid?: boolean; isReadOnly?: boolean; } /** * Wrapper around react-select taking care of the type generics and NL DS integration. */ declare function ReactSelectWrapper({ inputId, isRequired, isReadOnly, isInvalid, options, formikValue, ...props }: ReactSelectWrapperProps): import("react/jsx-runtime").JSX.Element; export default ReactSelectWrapper;