import type { PikkuSchema } from './pikku-schema.types.js'; /** * Threads, messages, tool calls, working memory and agent runs. * * `agentRun` carries `pendingApprovals` even though the two services that used to * create this table disagreed about it: `KyselyAgentStorageService` omitted the * column while `KyselyAgentRunStateService` declared it and read it back through * casts. Whichever service happened to run first decided the shape, and on a * database where the storage service won, resolving an approval failed. One * declaration ends that — the column is here because live code reads it. */ export declare const agentSchema: PikkuSchema;