import { V0UIReviewerCLI } from './index.js';
export declare class InteractiveV2Session {
    private rl;
    private state;
    private commands;
    private isProcessing;
    constructor(reviewer: V0UIReviewerCLI, options?: {
        verbose?: boolean;
    });
    private getPrompt;
    private registerCommands;
    private mapModelName;
    private setupAutocomplete;
    private handleInput;
    private showCommandSuggestions;
    private analyzeLocalProject;
    private analyzeLocalFile;
    private chatAboutDesign;
    private displayReview;
    private showHelp;
    private log;
    private error;
    start(): Promise<void>;
}
export declare function runInteractiveV2Mode(options?: {
    verbose?: boolean;
}): Promise<void>;
