import { type ContinuationRetentionOptions, type ContinuationStore } from "./continuation-store-types.js"; export { acquireContinuationStoreLock, loadOrCreateContinuationSecret, } from "./continuation-store-fs.js"; export { CONTINUATION_RECORD_STORE_SCHEMA_VERSION, CONTINUATION_STORE_SCHEMA_VERSION, MAX_CONTINUATION_ORIGIN_CONTEXT_BYTES, MAX_CONTINUATION_ORIGIN_CONTEXT_MESSAGES, MAX_CONTINUATION_ORIGIN_CONTEXT_MESSAGE_BYTES, MAX_CONTINUATION_ORIGIN_CONTEXT_STORE_BYTES, } from "./continuation-store-types.js"; export type { ContinuationLastError, ContinuationOriginContextPin, ContinuationOriginContextReference, ContinuationOriginContextState, ContinuationRetentionOptions, ContinuationStore, ContinuationStoreLock, ContinuationStoreStats, DurableContinuationRecord, } from "./continuation-store-types.js"; export declare function openContinuationStore(stateDir: string, options?: { readonly retention?: ContinuationRetentionOptions; readonly now?: () => Date; }): Promise; //# sourceMappingURL=continuation-store.d.ts.map