import { SortOptions, SortObject, UnknownObject } from "./sort.interface"; /** * @module * @function SortByProperty * @param collection - array to sort * @param {SortOptions} options - typeof SortOptions * @example { * direction: SortDirections.Ascending, * sortKey: 'id', * locale: 'se', * numeric: true * } * @returns sorted array */ declare const _default: , U extends SortOptions>(collection: T[], options: U) => T[]; export default _default; //# sourceMappingURL=sort.d.ts.map