UNPKG

@mui/base

Version:

MUI Base is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

7 lines (6 loc) 226 B
import * as React from 'react'; import { PopupPlacement } from './Popup.types'; export interface PopupContextValue { placement: PopupPlacement; } export declare const PopupContext: React.Context<PopupContextValue | null>;