import { type FabricThinking } from "../thinking.js"; export interface ActorSessionBindingRecord { model?: string; thinking?: FabricThinking; updatedAt: number; } export declare class ActorBindingStore { #private; readonly sessionId: string; readonly filePath: string | undefined; constructor(sessionId: string, root: string | undefined); get(actorId: string): ActorSessionBindingRecord | undefined; setModel(actorId: string, model: string | undefined): Promise; setThinking(actorId: string, thinking: FabricThinking | undefined): Promise; delete(actorId: string): Promise; } //# sourceMappingURL=binding-store.d.ts.map