import { Extension } from 'flow-lcl/core'; interface SelectionSelectPlugin extends Extension { open: () => void; close: () => void; [x: string]: any; } declare const SelectionSelect: SelectionSelectPlugin; export { SelectionSelect };