// Main exports export { default as BBPlayerView } from "./BBPlayerView"; export { default as BBShortsView } from "./BBShortsView"; export { default as BBOutstreamPlayerView } from "./BBOutstreamView"; export { default as BBCastButton } from "./BBCastButton"; export { default as BBCastMiniControls } from "./BBCastMiniControls"; export { BBModalPlayer } from "./BBModalPlayer"; export type { ModalPlayerOptions, ModalPlayerContext } from "./BBModalPlayer"; export { addCastSessionListener } from "./cast"; export type { CastSessionEvent } from "./cast"; export * from "./BBPlayer.types"; export * from "./BBShortsView"; // Export BBShortsView types export * from "./BBOutstreamView"; // Export BBOutstreamView types export * from "./BBCastButton"; // Export BBCastButton types export * from "./BBCastMiniControls"; // Export BBCastMiniControls types export * from "./types"; export * from "./utils"; // Deprecated aliases — kept for backwards compatibility /** @deprecated Use `BBOutstreamPlayerView` instead. */ export { default as BBOutstreamView } from "./BBOutstreamView"; /** @deprecated Use `BBOutstreamPlayerView` instead. */ export { default as ExpoBBPlayerView } from "./BBPlayerView"; export { type BBPlayerViewProps as ExpoBBPlayerViewProps, type BBPlayerViewMethods as ExpoBBPlayerViewType, } from "./BBPlayer.types";