declare const menu: (drop: HTMLElement) => void; declare const select: (drop: HTMLElement, icon: string, callBack: (value: string, text: string) => void) => void; declare const update: (drop: HTMLElement, icon: string, callBack: (value: string, text: string) => void) => void; declare const clear: () => void; declare const index_clear: typeof clear; declare const index_menu: typeof menu; declare const index_select: typeof select; declare const index_update: typeof update; declare namespace index { export { index_clear as clear, index_menu as menu, index_select as select, index_update as update }; } export { clear as c, index as i, menu as m, select as s, update as u };