import { BranchNode } from './branchNode';
import { LeafNode } from './leafNode';
export declare type Node = BranchNode | LeafNode;
