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