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