import { z } from "zod"; import type { BreakpointBackend } from "../../backend.js"; import type { BreakpointPublicAnswer } from "../../types.js"; export declare const answerBreakpointDescription: string; export declare const answerBreakpointParams: { breakpointId: z.ZodString; text: z.ZodString; approved: z.ZodOptional; responderId: z.ZodString; responderName: z.ZodString; confidence: z.ZodOptional; references: z.ZodOptional>; sign: z.ZodOptional; keyFingerprint: z.ZodOptional; backend: z.ZodOptional; breakpointsDir: z.ZodOptional; }; export interface AnswerBreakpointParams { breakpointId: string; text: string; approved?: boolean; responderId: string; responderName: string; confidence?: number; references?: string[]; sign?: boolean; keyFingerprint?: string; backend?: string; breakpointsDir?: string; } export declare function handleAnswerBreakpoint(params: AnswerBreakpointParams, backend: BreakpointBackend): Promise; //# sourceMappingURL=answer-breakpoint.d.ts.map