import * as React from "react";
import type { SelectOption } from "./types";
export interface AsyncSelectProps extends Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'options'> {
    name: string;
    label?: string;
    loadOptions: (inputValue?: string) => Promise<SelectOption[]>;
    containerClassName?: string;
    isClearable?: boolean;
    defaultOptions?: SelectOption[] | boolean;
    loadingMessage?: string;
    noOptionsMessage?: string;
    searchable?: boolean;
    debounceMs?: number;
}
declare const AsyncSelect: React.ForwardRefExoticComponent<AsyncSelectProps & React.RefAttributes<HTMLSelectElement>>;
export { AsyncSelect };
