import { Agent } from '../types';

type AgentType = 'clip_v2' | Agent['presenter']['type'];
export type PresenterType = 'v4' | 'v3-pro' | 'v2';
export declare const getAgentType: (presenter: Agent["presenter"]) => AgentType;
export declare const getPresenterType: (presenter: Agent["presenter"]) => PresenterType;
export declare const getPresenterIdentifier: (presenter: Agent["presenter"]) => string;
export declare const isStreamsV2Agent: (type: AgentType) => boolean;
export {};
