declare class LikeCommentRequest {
    postId: string;
    commentId: string;
    constructor(postId: string, commentId: string);
    static builder(): LikeCommentRequestBuilder;
}
export declare class LikeCommentRequestBuilder {
    private postId;
    private commentId;
    setPostId(postId: string): LikeCommentRequestBuilder;
    setCommentId(commentId: string): LikeCommentRequestBuilder;
    build(): LikeCommentRequest;
}
export default LikeCommentRequest;
