import React from 'react';
import { Reference } from '../../utils/synapseTypes';
import { Map } from 'immutable';
export declare type SelectionPaneProps = {
    title: string | ((count: number) => string);
    selectedEntities: Map<string, number>;
    toggleSelection: (entity: Reference) => void;
};
export declare const SelectionPane: React.FC<SelectionPaneProps>;
