import { JitsiMeetExternalApi } from "./types";
/**
 * Injects the external_api.js script for the corresponding domain in DOM
 * and resolves with either the `JitsiMeetExternalApi` class definition or an error
 *
 * @param {string} domain - The domain of the external API
 * @returns {Promise<JitsiMeetExternalApi>} - the JitsiMeetExternalAPI or an error
 */
export declare const fetchExternalApi: (domain?: string) => Promise<JitsiMeetExternalApi>;
