import { CommentRequestPropsBody } from "."; import { Comment, Put } from "../types"; export interface UpdateCommentRequestProps { comment_id: string; body: CommentRequestPropsBody; } export declare type UpdateCommentResponse = Comment; /** @internal */ export declare const updateComment: (put: Put) => (props: UpdateCommentRequestProps) => Promise;