import React, { ReactNode } from 'react'; import Video from 'react-native-video'; import { AspectRatio } from '../utils'; import { RNVideoProps } from '../Video/RNVideo'; import { FullscreenOrientation } from '../ScreenContainer'; import { IconConfig } from '../icons'; export declare type FacebookPlayerProps = { initialPaused?: boolean; initialMuted?: boolean; aspectRatio?: AspectRatio; mode: 'auto-fit' | 'contain'; customIcon?: IconConfig; renderToolbar?: (fullscreen: false | FullscreenOrientation) => ReactNode; } & RNVideoProps; declare const _default: { (props: { initialPaused?: boolean | undefined; initialMuted?: boolean | undefined; aspectRatio?: number | "landscape" | "portrait" | undefined; mode: "auto-fit" | "contain"; customIcon?: Partial React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>>> | undefined; renderToolbar?: ((fullscreen: false | "LANDSCAPE-LEFT" | "LANDSCAPE-RIGHT" | "PORTRAIT") => React.ReactNode) | undefined; } & Pick & React.RefAttributes