import { TMethod } from '@onesy/models';
export interface IBinarySearchOptions {
    sort?: boolean;
    sortMethod?: TMethod;
}
export default function binarySearch(array: Array<number>, value: number, options?: IBinarySearchOptions): number;
