/**
 * Insertion sort, should be faster than built-int sort for small arrays.
 *
 * @todo Move this to `thingies` package.
 *
 * @param arr Array to sort.
 * @returns Returns the same array instance.
 */
export declare const sort: <T>(arr: T[]) => T[];
//# sourceMappingURL=insertion.d.ts.map