import { type ComponentType, type Ref } from 'react'; import { type AsyncSelectProps, type AtlaskitSelectRefType, type CreatableSelectProps, type OptionType, type SelectProps } from './types'; type AtlaskitSelectProps = SelectProps | AsyncSelectProps | CreatableSelectProps; export default function createSelect(WrappedComponent: ComponentType): (props: AtlaskitSelectProps & { ref?: Ref; }) => JSX.Element; export {};