import { VoxketClient } from '../../core/client';
import { ThemeType } from '../../styles';
interface DeepAnalysisProps {
    voxketClient: VoxketClient | null;
    theme: ThemeType;
    setTheme: (theme: ThemeType) => void;
    configAgentId: string;
    configParticipantName: string;
    className?: string;
    prompts?: string[];
    statusMessage?: string;
    welcomeTitle?: string;
    welcomeSubTitle?: string;
    participantMetadata?: Record<string, any>;
}
export declare function DeepAnalysis({ voxketClient, theme, setTheme, configAgentId, configParticipantName, className, prompts, statusMessage, welcomeTitle, welcomeSubTitle, participantMetadata }: DeepAnalysisProps): import("react/jsx-runtime").JSX.Element;
export {};
