import { ConfigPlugin } from "expo/config-plugins"; export interface BBPlayerPluginProps { /** * iOS: Enables background audio playback capability. * Adds UIBackgroundModes with 'audio' to Info.plist. * @default false */ enableBackgroundAudio?: boolean; /** * Android: Custom Maven repository URL for BB SDK. * Only needed if using a private/custom repository. * @default 'https://maven.bluebillywig.com/releases' */ androidMavenUrl?: string; } declare const _default: ConfigPlugin; export default _default; export { withAndroidBBPlayer } from "./withAndroid"; export { withIosBBPlayer } from "./withIos"; //# sourceMappingURL=index.d.ts.map