import { FunctionComponent } from 'react';
import Record from '../data-set/Record';
export interface SelectionTreeBoxProps {
    record: Record;
}
declare const SelectionTreeBox: FunctionComponent<SelectionTreeBoxProps>;
export default SelectionTreeBox;
