import { ResultType } from '../common/data-type'; declare class SelectionController { private apiClassName; private selections; private obj; constructor(obj: any); Add(objects: Array): Promise; Get(): Promise>; Remove(objects: Array): Promise; Clear(): Promise; Draw(): Promise; } export default SelectionController;