import { IAsyncSelectProps } from "../AsyncSelect.interface"; export declare class AsyncSelectObject { render(props?: Partial): this; get select(): HTMLElement; get label(): HTMLElement; get supportingText(): HTMLElement; get placeholder(): HTMLElement; get error(): HTMLElement; get noOptionMessage(): HTMLElement; typeInInputSelect(text: string): void; selectOption(text: string): Promise; openMenu(): void; }