import { PSet as PS } from '../typings'; declare class PSet implements PS { box: Set; constructor(); add(v: T): void; delete(v: T): boolean; has(v: T): boolean; clear(): void; size(): number; values(): T[]; getSet(): Set; concat(...v: PS[]): this; intersect(...v: PSet[]): this; diffSet(...v: PSet[]): this; subSetOf(v: PS): boolean; } export { PSet };