import { IntPair } from './IntPair'; export declare class IntPairSet { has(p: IntPair): boolean; arrayOfSets: Set[]; remove(p: IntPair): boolean; hasxy(x: number, y: number): boolean; constructor(); static mk(ps: Array): IntPairSet; values(): IterableIterator; add(p: IntPair): void; addNN(x: number, y: number): void; clear(): void; }