import { Component } from 'react' export interface BaseShowferPlayerProps { url: string width?: string | number height?: string | number subUrl?: string | null disabledCookie?: boolean volume?: string | number muted?: boolean controls?: boolean type?: string | null onReady?: () => void onStart?: () => void onPlay?: () => void onPause?: () => void onProgress?: () => void fullscreenFunc?: () => void fullscreen?: () => void controlFunc?: () => void volumeFunc?: () => void [otherProps: string]: any } export default class BaseShowferPlayer< T extends BaseShowferPlayerProps > extends Component { getInternalPlayer (key?: string): Record; }