import { FC, MutableRefObject, PropsWithChildren } from 'react'; import { ClassStyleProps } from '../../../utils/types'; type PopperContext = { containerRef: MutableRefObject; }; export declare const popperContext: import("react").Context; export declare const PopperProvider: FC>; export declare const usePopper: () => PopperContext; export {};