/** * Binary search implementation * @param array A sorted array of numbers * @param target The value to search for * @returns The index of the target value in the array, or -1 if not found */ export declare const binarySearch: (array: number[], target: number) => number;