import BinaryTreeNode from '../tree/BinaryTreeNode'; import { MainInputOptions } from './types'; /** * Draw a binary tree in one of the given types * * @param {BinaryTreeNode} root * @param {HTMLCanvasElement} canvasElement * @param {Partial} options */ declare function drawBinaryTree(root: BinaryTreeNode, canvasElement: HTMLCanvasElement, options?: Partial): void; export default drawBinaryTree;