import type { ONICheckpoint, ONICheckpointer, CheckpointListOptions } from "../types.js"; export declare class NamespacedCheckpointer implements ONICheckpointer { private readonly inner; private readonly ns; constructor(inner: ONICheckpointer, ns: string); private prefix; get(threadId: string): Promise | null>; put(checkpoint: ONICheckpoint): Promise; list(threadId: string, opts?: CheckpointListOptions): Promise[]>; delete(threadId: string): Promise; } //# sourceMappingURL=namespaced.d.ts.map