export type FeedbackType = 'positive' | 'negative'; export type SendFeedbackInput = { agentName: string; sessionId: string; messageId: string; type: FeedbackType; correctiveAnswer?: string; apiHost?: string; }; export declare const sendFeedbackQuery: ({ apiHost, agentName, sessionId, messageId, type, correctiveAnswer, }: SendFeedbackInput) => Promise<{ data?: { ok: boolean; feedbackStatus?: "NONE" | "GREEN" | "RED" | undefined; } | undefined; error?: Error | undefined; }>; //# sourceMappingURL=sendFeedbackQuery.d.ts.map