import { type Context } from 'react'; import { DismissiblePagePanels } from '../types/shared-page-types.js'; export interface PanelContextProps { panelName?: DismissiblePagePanels; } /** The PanelContext is used to tell where the PagePanelControl is rendered. */ export declare const PanelContext: Context;