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