interface UsePipControlsProps { skipSeconds: number; } interface UsePipControlsHook { onRwd: VoidFunction; onFwd: VoidFunction; onClose: VoidFunction; } export declare const usePipControlsHook: ({ skipSeconds, }: UsePipControlsProps) => UsePipControlsHook; export {};