/** * Generic host-owned keyed tool state (ADR-0042 — the third-party persistence * parity mechanism). ONE table serves every tool: each row is one opaque JSON * payload under a `(tool, key)` identity, so tools share the table but never * see each other's rows — the exact pattern the ADR-0036 baseline pair proved. * Tools reach it ONLY through the `ToolStateRepo` / the `cli.toolState` seams; * they never own schema. * * Durability note: unlike baselines (drop-and-recapture, CI-ephemeral), tool * state is DURABLE tool data — a release never drops these rows. */ export declare const toolState: import("drizzle-orm/sqlite-core").SQLiteTableWithColumns<{ name: "tool_state"; schema: undefined; columns: { tool: import("drizzle-orm/sqlite-core").SQLiteColumn<{ name: "tool"; tableName: "tool_state"; dataType: "string"; columnType: "SQLiteText"; data: string; driverParam: string; notNull: true; hasDefault: false; isPrimaryKey: false; isAutoincrement: false; hasRuntimeDefault: false; enumValues: [string, ...string[]]; baseColumn: never; identity: undefined; generated: undefined; }, {}, { length: number | undefined; }>; key: import("drizzle-orm/sqlite-core").SQLiteColumn<{ name: "key"; tableName: "tool_state"; dataType: "string"; columnType: "SQLiteText"; data: string; driverParam: string; notNull: true; hasDefault: false; isPrimaryKey: false; isAutoincrement: false; hasRuntimeDefault: false; enumValues: [string, ...string[]]; baseColumn: never; identity: undefined; generated: undefined; }, {}, { length: number | undefined; }>; payload: import("drizzle-orm/sqlite-core").SQLiteColumn<{ name: "payload"; tableName: "tool_state"; dataType: "json"; columnType: "SQLiteTextJson"; data: unknown; driverParam: string; notNull: false; hasDefault: false; isPrimaryKey: false; isAutoincrement: false; hasRuntimeDefault: false; enumValues: undefined; baseColumn: never; identity: undefined; generated: undefined; }, {}, {}>; updatedAt: import("drizzle-orm/sqlite-core").SQLiteColumn<{ name: "updated_at"; tableName: "tool_state"; dataType: "number"; columnType: "SQLiteInteger"; data: number; driverParam: number; notNull: true; hasDefault: false; isPrimaryKey: false; isAutoincrement: false; hasRuntimeDefault: false; enumValues: undefined; baseColumn: never; identity: undefined; generated: undefined; }, {}, {}>; }; dialect: "sqlite"; }>; //# sourceMappingURL=tool-state.d.ts.map