import { Joi } from '../helpers'; export interface IUpdateParams { conversationId: string; comment: string; } export declare const updateParamsSchema: Joi.ObjectSchema; export interface IApi { conversationReviewsUpdate(params: IUpdateParams): Promise; }