export declare class Heap { private data; private getLeftChildIndex; private getRightChildIndex; private getParentIndex; private hasGreaterChild; private calculateLargerChildIndex; top(): T; insert(v: T): void; pop(): T; } export declare function createHeap(): Heap;