import { LitElement } from "lit"; import { SingleSelectStyle } from "./SingleSelectStyle"; export declare class CometChatSingleSelect extends LitElement { name: string; options: string[]; selectedOption: string; selectStyle: SingleSelectStyle; isHovering: boolean; hoveredOption: string; onMouseHover: any; static styles: import("lit").CSSResult; render(): unknown; private selectOption; private containerStyle; private optionStyle; } declare global { interface TagNameMap { "cometchat-single-select": CometChatSingleSelect; } namespace JSX { interface IntrinsicElements { "cometchat-dropdown": any; } } } //# sourceMappingURL=cometchat-single-select.d.ts.map