import * as React from 'react'; export const DialogPortalContext = /*#__PURE__*/React.createContext(undefined); export function useDialogPortalContext() { const value = React.useContext(DialogPortalContext); if (value === undefined) { throw new Error('Base UI: is missing.'); } return value; }