import React from 'react'; import type { BBChannelProps, BBChannelRef } from '../types'; /** * BBChannel - Main component for embedding Blue Billywig video channels * * @example * ```tsx * import { BBChannel, BBChannelRef } from '@bluebillywig/react-native-channel'; * * function App() { * const channelRef = useRef(null); * * return ( * console.log('Playing:', video.title)} * onPlayerEvent={(event) => { * if (event.type === 'timeupdate') { * console.log(`Progress: ${event.data.progress}%`); * } * }} * onReady={() => console.log('Channel loaded')} * /> * ); * } * ``` */ export declare const BBChannel: React.ForwardRefExoticComponent>; //# sourceMappingURL=BBChannel.d.ts.map