import type { WrappedComment } from "../models/WrappedComment"; import type { WrappedCommentCreate } from "../models/WrappedCommentCreate"; import type { CancelablePromise } from "../core/CancelablePromise"; export declare class CommentService { /** * Create a new comment * Record a new comment that the user intends to add to a given task. This will save the comment in Dart for later access, search, etc. * @param requestBody * @returns WrappedComment Success, including the created comment * @throws ApiError */ static createComment(requestBody: WrappedCommentCreate): CancelablePromise; }