export default class HashTableSeparateChainingElement<T> {
    key: string;
    value: T;
    constructor(key: string, value: T);
    private [Symbol.toPrimitive];
}
