import Vue, { Component, PluginFunction } from 'vue' // TODO чтобы у Component была связь с VueCoolSelectComponentInterface export const component: Component export const CoolSelect: Component export const VueCoolSelect: Component export const CoolSelectPlugin: PluginFunction export const EventEmitter: { on: (event: any, listener: any) => any onOnce: (event: any, listener: any) => any emit: (event: any, data: any) => any } export interface CoolSelectUseOptionsInterface { text: { noData: string } } export interface VueCoolSelectComponentInterface extends Vue { [key: string]: any wishShowMenu: boolean arrowsIndex: number | null focused: boolean selectedItem: any selectedItemByArrows: any searchData: string scrollItemsLimitCurrent: number // addEventListener identifier mousedownListener: any /* Props */ arrowsDisableInstantSelection: boolean scrollItemsLimitAddAfterScroll: number /* Computed */ hasMenu: boolean itemsComputed: any[] /* Methods */ onSelectByArrow (e: any): any onEnter (e: any): any onClick (): any onClickSelectItem (item: any): any onSearchKeyDown (e: any): any onSearchKeyUp (e: any): any onSearch (e: any): any onScroll (event: any): any setBlured (): any }