import { GenericObject, MethodsBuilder } from "../../api.types"; export interface CommentSharedMethodApiType { getComment(id: string): Promise; updateComment(id: string, fields: GenericObject): Promise; listComment(): Promise; addComment(fields: GenericObject): Promise; deleteComment(id: string): Promise; commentFields(): Promise; } export declare const COMMENT_SHARED_METHODS: MethodsBuilder;