import { ICreatableSelectProps } from "../CreatableSelect.interface"; export declare class CreatableSelectObject { render(props?: Partial): this; get select(): HTMLElement; get label(): HTMLElement; get supportingText(): HTMLElement; get placeholder(): HTMLElement; get error(): HTMLElement; getCreatableTextContainer(newOption: string): Promise; type(option: string): void; selectOption(option: string): Promise; openMenu(): void; }