import { CoreEntity } from '../../../../../core/geometry/CoreEntity';
export type CoreEntitySelectionState = Map<CoreEntity, boolean>;
export declare function updateSelectionState(selectionStates: CoreEntitySelectionState, entity: CoreEntity, state: boolean): void;
export declare function selectedIndicesFromSelectionStates(selectionStates: CoreEntitySelectionState, selectedIndices: Set<number>, invert: boolean): void;
