import { EventEmitter } from '../../stencil-public-runtime'; import { RVSelectStyle } from '../../types'; export declare class Select { /** * The items to be listed */ readonly items: string[]; /** * Position of the Select text when opened */ readonly selectStyle?: RVSelectStyle; selectedItem: EventEmitter; private selectedIndex; private open; private selectedItemHandler; render(): HTMLElement; }