import type { OpenClawConfig } from "../../config/config.js"; import type { ThreadBindingRecord, ThreadBindingTargetKind } from "./thread-bindings.types.js"; export type AcpThreadBindingReconciliationResult = { checked: number; removed: number; staleSessionKeys: string[]; }; export declare function listThreadBindingsForAccount(accountId?: string): ThreadBindingRecord[]; export declare function listThreadBindingsBySessionKey(params: { targetSessionKey: string; accountId?: string; targetKind?: ThreadBindingTargetKind; }): ThreadBindingRecord[]; export declare function autoBindSpawnedDiscordSubagent(params: { accountId?: string; channel?: string; to?: string; threadId?: string | number; childSessionKey: string; agentId: string; label?: string; boundBy?: string; }): Promise; export declare function unbindThreadBindingsBySessionKey(params: { targetSessionKey: string; accountId?: string; targetKind?: ThreadBindingTargetKind; reason?: string; sendFarewell?: boolean; farewellText?: string; }): ThreadBindingRecord[]; export declare function setThreadBindingIdleTimeoutBySessionKey(params: { targetSessionKey: string; accountId?: string; idleTimeoutMs: number; }): ThreadBindingRecord[]; export declare function setThreadBindingMaxAgeBySessionKey(params: { targetSessionKey: string; accountId?: string; maxAgeMs: number; }): ThreadBindingRecord[]; export declare function reconcileAcpThreadBindingsOnStartup(params: { cfg: OpenClawConfig; accountId?: string; sendFarewell?: boolean; }): AcpThreadBindingReconciliationResult;