import { type ToolDef } from "../types.js"; interface RejectionReason { code: string; message: string; } export declare function validateSubmission(title: string, summary: string, pythonWorkaround: string | undefined, idealTool: string | undefined, sessionWorkaroundCount: number): RejectionReason | null; /** What the CALLER wants. Pure intent, two values. */ export type AuthorIntent = "user" | "bot"; export declare const feedbackTool: ToolDef; export {};