import { SortableOrder } from './types'; /** * Checks if an array of values is sorted. * @template T The type of the values. * @param {T[]} values The array of values. * @param {SortableOrder} [order='desc'] The order of sorting. * @returns {boolean} Whether the array is sorted. * * @example * isSortedValues([1, 2, 3], 'asc'); // Output: true */ export default function isSortedValues(values: T[], order?: SortableOrder): boolean; //# sourceMappingURL=isSortedValues.d.ts.map