import * as BI from '../bigint'; export type Cursor = { timestamp: BI.PortableBigInt; index: number; array: Sortable[]; }; export type Sortable = T & { timestamp: BI.PortableBigInt; }; export type SortedArray = Sortable[]; export declare function octopusSort(arrays: SortedArray[]): SortedArray;