import { AgentResponse, AuxCode, DesktopProfileResponse, DialPlanEntity, OrgInfo, OrgSettings, Profile, Team, TenantData, URLMapping, AIFeatureFlagsResponse } from './types'; /** * Parse the agent configurations * @param {Object} profileData * @returns {Profile} */ declare function parseAgentConfigs(profileData: { userData: AgentResponse; teamData: Team[]; tenantData: TenantData; orgInfoData: OrgInfo; auxCodes: AuxCode[]; orgSettingsData: OrgSettings; agentProfileData: DesktopProfileResponse; dialPlanData: DialPlanEntity[]; urlMapping: URLMapping[]; multimediaProfileId: string; aiFeatureFlags: AIFeatureFlagsResponse; }): Profile; export { parseAgentConfigs };