import { Agent } from '../types/index';
export declare function getAnalyticsInfo(agent: Agent): {
    $os: string;
    isMobile: string;
    browser: string;
    origin: string;
    agentType: "talk" | "clip" | "clip_v2";
    agentVoice: {
        voiceId: string | undefined;
        provider: import('../types/index').Providers | undefined;
    };
};
export declare function getStreamAnalyticsProps(data: any, agent: Agent, additionalProps: Record<string, any>): any;
