import { Request, Response, NextFunction } from 'express'; export declare class FeedbackController { /** * Submit new feedback for a document */ static submitFeedback(req: Request, res: Response, next: NextFunction): Promise; /** * Get feedback for a specific project */ static getProjectFeedback(req: Request, res: Response, next: NextFunction): Promise; /** * Get feedback for a specific document */ static getDocumentFeedback(req: Request, res: Response, next: NextFunction): Promise; /** * Update feedback status */ static updateFeedbackStatus(req: Request, res: Response, next: NextFunction): Promise; /** * Get feedback analytics for a project */ static getFeedbackAnalytics(req: Request, res: Response, next: NextFunction): Promise; /** * Get feedback summary for dashboard */ static getFeedbackSummary(req: Request, res: Response, next: NextFunction): Promise; /** * Search feedback across projects */ static searchFeedback(req: Request, res: Response, next: NextFunction): Promise; /** * Get feedback insights for AI prompt improvement */ static getFeedbackInsights(req: Request, res: Response, next: NextFunction): Promise; } //# sourceMappingURL=FeedbackController.d.ts.map