import TupleTag from "./TupleTag"; import Tuple from "./Tuple"; export default class TupleMap { data: Map; constructor(data: Map); get(attr: string): TupleTag; getValue(attr: string): any; setValue(attr: string, value: any): TupleMap; has(attr: string): boolean; keys(): IterableIterator; values(): IterableIterator; toTuple(): Tuple; }