import { default as React, ReactNode } from 'react'; type Context = { titleId: string; }; export declare const PanelContext: React.Context; type PanelProviderProps = { children: ReactNode; titleId: string; }; export declare function PanelProvider({ /** * The content of the PanelProvider. */ children, /** * The Id of the title element for accessibility. */ titleId, }: PanelProviderProps): React.JSX.Element; export declare function usePanelContext(): Context; export {}; //# sourceMappingURL=PanelProvider.d.ts.map