/**
* @packageDocumentation BitmovinUi.package
*
* Loads and applies Bitmovin player UI js library and styles. Then it connects it
* to the instance API.
*
* ### `BitmovinUi` Package Dependency Graph
*
*/
import type { EmptyObject } from '../../Types';
import { AdditionalPlayerExportNames } from './enums/AdditionalPlayerExportNames';
import type { EventListenerAtom } from './event-handling/EventListenerAtom';
import type { BitmovinV8PlayerApi, PlayerConfig } from './types/Types';
type Dependencies = {
[AdditionalPlayerExportNames.UserConfig]: PlayerConfig;
[AdditionalPlayerExportNames.PlayerApi]: BitmovinV8PlayerApi;
[AdditionalPlayerExportNames.EventListenerAtom]: EventListenerAtom;
};
export declare const BitmovinPlayerUiPackage: import("../../../framework-types/package-api/Package").Package;
export default BitmovinPlayerUiPackage;
export declare const version: string;