import React from 'react'; import { ActionMeta, OnChangeValue } from 'react-select'; import { Option, SelectProps } from '../types'; export declare type SelectMenuAsyncProps = Omit & { loadOptions: (inputValue: string, callback: (options: Option[]) => void) => void; defaultOptions?: boolean | Option[]; cacheOptions?: boolean; }; declare const SelectMenuAsync: React.ForwardRefExoticComponent & { loadOptions: (inputValue: string, callback: (options: Option[]) => void) => void; defaultOptions?: boolean | Option[] | undefined; cacheOptions?: boolean | undefined; } & React.RefAttributes>; export type { ActionMeta, OnChangeValue, Option }; export default SelectMenuAsync;