import { ConditionalValue, ColorPalette, TagRootProps, SystemStyleObject, SelectRootProps, SpinnerProps } from '@chakra-ui/react'; import * as react_select from 'react-select'; import { GroupBase, ClearIndicatorProps, ContainerProps, ControlProps, DropdownIndicatorProps, GroupProps, GroupHeadingProps, IndicatorsContainerProps, IndicatorSeparatorProps, InputProps, LoadingIndicatorProps, NoticeProps, MenuProps, MenuListProps, MultiValueProps, OptionProps, PlaceholderProps, SingleValueProps, ValueContainerProps, Props, SelectInstance, StylesConfig, ThemeConfig } from 'react-select'; export * from 'react-select'; export { Props as ReactSelectBaseProps } from 'react-select/base'; import { RefAttributes, ReactElement } from 'react'; import { CreatableProps } from 'react-select/creatable'; export { CreatableProps, useCreatable } from 'react-select/creatable'; import { AsyncProps } from 'react-select/async'; export { AsyncProps, useAsync } from 'react-select/async'; import { AsyncCreatableProps } from 'react-select/async-creatable'; export { AsyncCreatableProps } from 'react-select/async-creatable'; import * as react_jsx_runtime from 'react/jsx-runtime'; type CssVars = `var(--${string})`; type AnyString = string & {}; type ColorPaletteProp = ConditionalValue; type Size = "sm" | "md" | "lg"; type SizeProp = Size | Record | Array; /** * By default includes `"outline" | "subtle" | "solid" | "surface"` */ type TagVariant = TagRootProps["variant"]; type SelectedOptionStyle = "color" | "check"; type Variant = SelectRootProps["variant"]; type StylesFunction = (provided: SystemStyleObject, state: ComponentProps) => SystemStyleObject; interface ChakraStylesConfig