import { AxiosInstance } from 'axios'; export declare class CommentService { protected readonly instance: AxiosInstance; protected readonly target: string; constructor(instance?: AxiosInstance, target?: string); postComment(targetId: string, authorId: string, comment: unknown[]): Promise; deleteComments(targetId: string): Promise; }