import { type KeyFunction, type OptionsWithKey, type OptionsWithRequiredKey, type Simple } from "./types"; /** * Sort an array with convenience features */ export declare function sort(input: readonly Item[]): Item[]; export declare function sort(input: readonly Item[], key: KeyFunction): Item[]; export declare function sort(input: readonly Item[], options: OptionsWithKey): Item[]; export declare function sort(input: readonly Item[], options: OptionsWithRequiredKey): Item[];