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