import { Component } from 'react'; import { ViewStyle } from 'react-native'; interface IAwsIvsPlayerView { onPlayerWillRebuffer?(any: any): any; onDidChangeState?(any: any): any; onDidChangeDuration?(any: any): any; onDidOutputCue?(any: any): any; onDidSeekToTime?(any: any): any; onBitrateRecalculated?(any: any): any; maxBufferTimeSeconds: number; rebufferToLive: boolean; style?: ViewStyle; } declare class PlayerView extends Component { constructor(props: any); _onPlayerWillRebuffer: (event: any) => void; _onDidChangeState: (event: any) => void; _onDidChangeDuration: (event: any) => void; _onDidOutputCue: (event: any) => void; _onDidSeekToTime: (event: any) => void; _onBitrateRecalculated: (event: any) => void; initialize(): void; pause(): void; mute(): void; unmute(): void; stop(): void; load(urlString: String): void; render(): JSX.Element; } export default PlayerView;