export interface OrderedItem { id: string; orderKey: string; } /** * Returns the key that moves `itemId` immediately after `afterId`. A null * `afterId` moves the item to the beginning. The input may be unsorted. */ export declare function orderKeyAfter(items: readonly OrderedItem[], itemId: string, afterId: string | null): string; //# sourceMappingURL=orderKeyAfter.d.ts.map