declare class ReplyCommentRequest {
    postId: string;
    commentId: string;
    text: string;
    tempId?: string;
    constructor(postId: string, commentId: string, text: string, tempId: string);
    static builder(): ReplyCommentRequestBuilder;
}
export declare class ReplyCommentRequestBuilder {
    postId: string | undefined;
    commentId: string | undefined;
    text: string | undefined;
    private tempId;
    setPostId(postId: string): ReplyCommentRequestBuilder;
    setCommentId(commentId: string): ReplyCommentRequestBuilder;
    setText(text: string): ReplyCommentRequestBuilder;
    setTempId(tempId: string): ReplyCommentRequestBuilder;
    build(): ReplyCommentRequest;
}
export default ReplyCommentRequest;
