FrontPastel/node_modules/@mui/base/Unstable_Popup/PopupContext.d.ts

7 lines
226 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
import * as React from 'react';
import { PopupPlacement } from './Popup.types';
export interface PopupContextValue {
placement: PopupPlacement;
}
export declare const PopupContext: React.Context<PopupContextValue | null>;