import byAny from "./sortables/byAny"; import byDate from "./sortables/byDate"; import byValue from "./sortables/byValue"; import byValues from "./sortables/byValues"; import byString from "./sortables/byString"; import byNumber from "./sortables/byNumber"; import byBoolean from "./sortables/byBoolean"; import sortAsync, { AsyncArray } from "./sortables/byAsyncValue"; declare const _default: { byAny: (options?: import("./interfaces/interfaces").SortOption) => import("./types/types").sortable; byDate: import("./types/types").sortableWithOption; byValue: typeof byValue; byValues: typeof byValues; byString: import("./types/types").sortableWithOption; byNumber: import("./types/types").sortableWithOption; sortAsync: (asyncItems: Promise[], sortFn: import("./types/types").sortable) => Promise; byBoolean: import("./types/types").sortableWithOption; AsyncArray: typeof AsyncArray; }; export default _default; export { byAny, byDate, byValue, byValues, byString, byNumber, sortAsync, byBoolean, AsyncArray, };