interface SelectiveReviewCommandOptions {
    config: string;
    file: string;
    startLine: number;
    endLine: number;
    comment: string;
    commentId?: number;
    threadId?: string;
}
export declare function selectiveReviewCommand(options: SelectiveReviewCommandOptions): Promise<boolean>;
export {};
