import { type Storage } from '../../storage/interface.ts'; import type { StoredStreamChunk } from '../context.ts'; export declare function loadStoredStreamChunks(storage: Storage, workflowId: string, key: string, options?: { after?: number; }): Promise; export declare function encodeStoredStreamTailSequence(sequence: number): Uint8Array; export declare function loadStoredStreamTailSequence(storage: Storage, workflowId: string, key: string): Promise;