import { IExecuteFunctions } from 'n8n-workflow';
import { IComment, ICommentCreate, ICommentUpdate } from '../interfaces/comment';
export declare function getComments(this: IExecuteFunctions, cardId: number): Promise<IComment[]>;
export declare function getComment(this: IExecuteFunctions, cardId: number, commentId: number): Promise<IComment>;
export declare function createComment(this: IExecuteFunctions, cardId: number, commentData: ICommentCreate): Promise<IComment>;
export declare function updateComment(this: IExecuteFunctions, cardId: number, commentId: number, commentData: ICommentUpdate): Promise<IComment>;
export declare function deleteComment(this: IExecuteFunctions, cardId: number, commentId: number): Promise<{
    success: boolean;
}>;
