import React from "react";
import type { W1VideoPlayerState } from "../../../types";
interface UseSyncStateProps {
    videoRef: React.RefObject<HTMLVideoElement | null>;
    isClient: boolean;
    state: W1VideoPlayerState;
    updateState: (updates: Partial<W1VideoPlayerState>) => void;
}
export declare const useSyncState: ({ videoRef, isClient, state, updateState }: UseSyncStateProps) => {};
export {};
