import * as react from 'react'; type ContainerContextType = { element: HTMLElement | null; }; declare const ContainerContext: react.Context; declare const useContainerContext: () => ContainerContextType; export { ContainerContext, type ContainerContextType, useContainerContext };