import { Context } from 'react'; type PanelContextValue = { titleId: string; hasTitle: boolean; withBackdrop: boolean; setHasTitle: (hasTitle: boolean) => void; }; export declare const PanelContext: Context; export declare const usePanelContext: () => PanelContextValue; export {};