import type { PrototypeStruct } from '../index.js'; interface BinarySearch { binarySearch(x: T): number; } export declare const binarySearch: PrototypeStruct; declare global { interface Array extends BinarySearch { } } export {}; //# sourceMappingURL=binary-search.d.ts.map