import {IArrayLike} from '../utils/types';

export function inplaceInsertionSort(array: IArrayLike, lo: number, hi: number): IArrayLike;
export function inplaceInsertionSortIndices(array: IArrayLike, indices: IArrayLike, lo: number, hi: number): IArrayLike;
