import React from 'react'; import { NativeStackScreenProps } from '@react-navigation/native-stack'; import { WebView, WebViewNavigation } from 'react-native-webview'; import { HomeStackParamList } from '../navigators'; export declare const videoUrl: (youtubeVideoId: string) => string; export interface Params { youtubeVideoId: string; videoName: string; } export declare const onShouldStartLoadWithRequest: (videoPlayer: React.RefObject>, event: WebViewNavigation) => boolean; type Props = NativeStackScreenProps; export declare const YoutubePlayerScreen: ({ route: { params } }: Props) => React.JSX.Element; export {};