declare type InstallPlayerScriptArgs = {
    context: Document;
    onLoadCallback: VoidFunction;
    scriptSrc: string;
    uniqueScriptId: string;
};
declare function installPlayerScript({ context, onLoadCallback, scriptSrc, uniqueScriptId }: InstallPlayerScriptArgs): HTMLScriptElement;
export default installPlayerScript;
