import type { CommentCheckerConfig } from "../../config/schema"; export declare function createCommentCheckerHooks(config?: CommentCheckerConfig): { "tool.execute.before": (input: { tool: string; sessionID: string; callID: string; }, output: { args: Record; }) => Promise; "tool.execute.after": (input: { tool: string; sessionID: string; callID: string; args?: Record; }, output: { title: string; output: string; metadata: unknown; }) => Promise; dispose: () => void; };