/** * Opens a new tab in the browser. * This is originally used to open 'My Calls Today' a list of calls the agent had taken today. * @param url The url to open. */ export declare function openMyCallsToday(url: string, openInNewWindow: boolean): Promise; /** * Apps that integrate with an application/CRM should register for this * * See [[openMyCallsToday]] * @param callback This function should try to open the mycalls today link inside the crm. Ideally in a new CRM tab(not browser tab) */ export declare function registerOpenMyCallsToday(callback: (url: string, openInNewWindow: boolean) => Promise): Promise;