import React from "react";
type Props = {
    myRef?: any;
    navigation?: any;
    headerElement?: any;
    showBack?: boolean;
    defaultFullscreen?: boolean;
    showFullscreen?: boolean;
    showMute?: boolean;
    isShouldPlay?: boolean;
    showMoreMenu?: boolean;
    moreMenuElement?: any;
    isCacheFile?: boolean;
    sourceSize?: number;
    sourceAsset: string;
    thumbnail?: string;
    videoWidth?: number;
    videoHeight?: number;
    commonCallback?: Function;
    loadingWaitTips?: string;
};
declare const YhwViewVideoPlayer: ({ myRef, navigation, headerElement, showBack, defaultFullscreen, showFullscreen, showMute, isShouldPlay, showMoreMenu, moreMenuElement, isCacheFile, sourceSize, sourceAsset, thumbnail, videoWidth, videoHeight, commonCallback, loadingWaitTips }: Props) => React.JSX.Element;
export default YhwViewVideoPlayer;
