UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

7 lines (6 loc) 363 B
import * as React from 'react'; export declare const PortalContext: React.Context<React.RefObject<HTMLElement | null>>; export type PortalProviderProps = React.PropsWithChildren<{ container: React.RefObject<HTMLElement | null>; }>; export declare function PortalProvider({ container, children }: PortalProviderProps): import("react/jsx-runtime").JSX.Element;