// Type definitions for use-sync-external-store 0.0 // Project: https://github.com/facebook/react#readme // Definitions by: eps1lon // Mark Erikson // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export function useSyncExternalStore( subscribe: (onStoreChange: () => void) => () => void, getSnapshot: () => Snapshot, getServerSnapshot?: () => Snapshot, ): Snapshot;