import { SortDirection } from './sortByKey.mjs';

type SortOptions = {
    locale?: string;
    shouldIgnoreZero?: boolean;
};
declare function sortData(a: unknown, b: unknown, direction?: SortDirection | null, options?: SortOptions): number;

export { sortData };
