import * as React from 'react'; import { GetRefs, NestedContextProps, NestingContextValue } from '../types'; export type UseNestingHookResult = { NestedComponent: React.Provider | React.ReactFragment; nestedProps: NestedContextProps | null; getRefs: GetRefs; isRoot: boolean; ref: React.RefObject; };