import type { VideoPlayerProps } from './VideoPlayer';
/**
 * Default-exported so `VideoPlayer` can code-split it via `React.lazy`, keeping
 * `react-player` (~2 MB) out of the SDK's eager import graph — it is fetched
 * only when a default video player actually renders.
 */
declare const ReactPlayerWrapper: ({ isPlaying, thumbnailUrl, videoUrl }: VideoPlayerProps) => import("react/jsx-runtime").JSX.Element;
export default ReactPlayerWrapper;
//# sourceMappingURL=ReactPlayerWrapper.d.ts.map