import { JsonArray } from '../common/decorators'; import { JwtAuthRequest } from '../core/auth'; import { Feedback, FeedbackReply } from './feedback.entities'; import { FeedbackReplyBody } from './feedback.interface'; declare class CreateFeedbackDto { name: string; type: string; images?: JsonArray; description: string; } export declare class ContentController { addFeedback(body: CreateFeedbackDto, req: JwtAuthRequest): Promise; addFeedbackReply(feedbackId: number, body: FeedbackReplyBody, req: JwtAuthRequest): Promise; } export {};