/** * Updates the matched filters according to the provided data * O(n) with n the number of values to be tested against document fields * * @param {FieldOperand} operand - content of all conditions to be tested * @param {object} testTables - test tables to update when a filter matches the document * @param {object} document */ export declare function MatchSelect(operand: any, testTables: any, document: any): void;