/** * Search an index set using a binary search to find the correct high bits. * * @param searchValue The value to search for. * @param buffer The index set to search in. * @param offset The offset to the start of the range to search * @param end The end of the buffer. * @return {number} The closest found location. */ export declare function indexSetSearch32(searchValue: number, buffer: Uint32Array, offset?: number, end?: number): number; /** * Search an index set using a binary search to find if a particular item is set. * * @param searchValue The value to search for. * @param buffer The index set to search in. * @param offset The offset to the start of the range to search * @param end The end of the buffer. * @return {boolean} True if the item is in the set. */ export declare function indexSetPointQuery32(searchValue: number, buffer: Uint32Array, offset?: number, end?: number): boolean; //# sourceMappingURL=search_operations.d.ts.map