import { IEnumerable } from '../core/IEnumerable'; import { Comparator } from '../core/index'; import { IParallelQueryable } from '../linq/IParallelQueryable'; import { IQueryable } from '../linq/IQuerable'; import { ISortedMap } from './ISortedMap'; export declare class SortedMap implements ISortedMap { private comparator; private arr; constructor(comparator: Comparator<[K, V], [K, V]>, enumerable?: IEnumerable<[K, V]> | Iterable<[K, V]>); [Symbol.toStringTag]: 'SortedMap'; [Symbol.iterator](): IterableIterator<[K, V]>; entries(): IterableIterator<[K, V]>; keys(): IterableIterator; values(): IterableIterator; isEmpty(): boolean; clear(): void; delete(key: K): boolean; forEach(callbackfn: (value: V, key: K, map: ISortedMap) => void, thisArg?: any): void; get(key: K): V; has(key: K): boolean; set(key: K, value: V): ISortedMap; get size(): number; linq(): IQueryable<[K, V]>; plinq(): IParallelQueryable<[K, V]>; clone(): ISortedMap; }