import type { SortKeyInfo } from './types.js'; export declare function splitNumericRange(min: number, max: number, count: number): Array<{ from: string; to: string; }>; export declare function splitDateTimeRange(min: string, max: string, count: number): Array<{ from: string; to: string; }>; export declare function stringToUint64(s: string): bigint; export declare function uint64ToString(n: bigint): string; export declare function splitStringRange(min: string, max: string, count: number): Array<{ from: string; to: string; }>; export declare function splitSortKeyRange(category: SortKeyInfo['category'], min: string, max: string, count: number): Array<{ from: string; to: string; }>; //# sourceMappingURL=splitter.d.ts.map