import Tree, { ITreeNode } from './tree'; export default class BinaryTree extends Tree { insert(data: T): ITreeNode; remove(data: T): void; }