import { V0UIReviewerCLI } from './index.js';
export interface InteractiveSession {
    reviewer: V0UIReviewerCLI;
    history: Array<{
        type: 'url' | 'screenshot';
        input: string;
        output?: string;
        timestamp: Date;
    }>;
}
export declare function runInteractiveMode(): Promise<void>;
