import { ReactPlayerProps } from '../../types'; interface UseReactPlayerHookProps { url: string; } interface UseReactPlayerHook { reactPlayerProps: ReactPlayerProps; } export declare const useReactPlayerHook: ({ url, }: UseReactPlayerHookProps) => UseReactPlayerHook; export {};