declare class EditCommentRequest {
    postId: string;
    commentId: string;
    text: string;
    constructor(postId: string, commentId: string, text: string);
    static builder(): EditCommentRequestBuilder;
}
export declare class EditCommentRequestBuilder {
    private postId;
    private commentId;
    private text;
    setPostId(postId: string): EditCommentRequestBuilder;
    setCommentId(commentId: string): EditCommentRequestBuilder;
    setText(text: string): EditCommentRequestBuilder;
    build(): EditCommentRequest;
}
export default EditCommentRequest;
