import React from 'react'; import { TrackProps } from 'react-player'; import { Arguments as UsePlayerArguments } from './usePlayer'; declare type Props = UsePlayerArguments & { label?: string; playerKey?: string; poster?: string; tracks?: TrackProps[]; }; export declare const Player: React.FC; export {};