import type { BST } from "..";
import type { BSTDataNode } from "../../DataNode";
export declare const DoubleLeftRightRotation: <T extends any, AbstractBSTDataNode extends BSTDataNode<T>>(a: BSTDataNode, tree: BST<T>) => void;
