declare class DeleteCommentRequest {
    postId: string;
    commentId: string;
    reason?: string;
    constructor(postId: string, commentId: string, reason?: string);
    static builder(): DeleteCommentRequestBuilder;
}
export declare class DeleteCommentRequestBuilder {
    private postId;
    private commentId;
    private reason?;
    setPostId(postId: string): DeleteCommentRequestBuilder;
    setCommentId(commentId: string): DeleteCommentRequestBuilder;
    setReason(reason: string): DeleteCommentRequestBuilder;
    build(): DeleteCommentRequest;
}
export default DeleteCommentRequest;
