import Tuple from './Tuple'; import TupleTag from './TupleTag'; export default class TupleMatchHelper { tuple: Tuple; countsByAttr: { [attr: string]: { min: number; max?: number; }; }; valueTagsByAttr: { [attr: string]: TupleTag[]; }; constructor(tuple: Tuple); findMatchingFixedTag(valueTag: TupleTag, tags: TupleTag[]): boolean; isSupersetCheckOneAttr(attr: string, subPattern: Tuple): boolean; }