type UseSyncStateProps = readonly [() => T, (newValue: T) => void]; export declare const useSyncState: (initialValue: T) => UseSyncStateProps; export {};