UNPKG

226 BTypeScriptView Raw
1import * as React from 'react';
2import { PopupPlacement } from './Popup.types';
3export interface PopupContextValue {
4 placement: PopupPlacement;
5}
6export declare const PopupContext: React.Context<PopupContextValue | null>;