/**
 * Test script to simulate visualization_data events
 * This can be run in the browser console when the deep analysis component is active
 */
declare global {
    interface Window {
        voxketClient?: any;
        testVisualizationEvent?: () => void;
        testBarChart?: () => void;
        testLineChart?: () => void;
        testTableData?: () => void;
    }
}
declare function testVisualizationEvent(): void;
declare function testBarChart(): void;
declare function testLineChart(): void;
declare function testTableData(): void;
export { testVisualizationEvent, testBarChart, testLineChart, testTableData };
