import { Request, Response, NextFunction } from "express";
import { FeedbackService } from "./feedback.service";
export declare class FeedbackController {
    private readonly feedbackService;
    constructor(feedbackService: FeedbackService);
    createFeedback: (req: Request, res: Response, next: NextFunction) => void;
    getAllFeedback: (req: Request, res: Response, next: NextFunction) => void;
    createAppVersion: (req: Request, res: Response, next: NextFunction) => void;
    getAppVersion: (req: Request, res: Response, next: NextFunction) => void;
}
