UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

10 lines (9 loc) 435 B
import { FC, MutableRefObject, PropsWithChildren } from 'react'; import { ClassStyleProps } from '../../../utils/types'; type PopperContext = { containerRef: MutableRefObject<HTMLDivElement | null>; }; export declare const popperContext: import("react").Context<PopperContext | undefined>; export declare const PopperProvider: FC<PropsWithChildren<ClassStyleProps>>; export declare const usePopper: () => PopperContext; export {};