import { ISelectDropdownProps } from "../SelectDropdown.interface"; export declare class SelectDropdownObject { render(props?: Partial): this; get select(): HTMLElement; get label(): HTMLElement; get supportingText(): HTMLElement; get placeholder(): HTMLElement; get error(): HTMLElement; selectOption(option: string): Promise; openMenu(): void; }