/** * Help Framework * * Contextual help system for microfrontend applications. * * Features: * - Help panel with docs, tours, and support tabs * - Guided tours system * - Context-aware content (microfrontends can register their help content) * - Search functionality * - Support ticket creation * * @example * ```tsx * // In your app's root * import { HelpProvider, HelpPanel, HelpButton } from '@burdenoff/fe-libs/shared/help'; * * function App() { * return ( * *
* *
* ... * *
* ); * } * * // In a microfrontend * import { useHelp } from '@burdenoff/fe-libs/shared/help'; * * function MyMicrofrontend() { * const { registerHelpContent } = useHelp(); * * useEffect(() => { * registerHelpContent({ * contextId: 'my-mfe', * articles: [...], * tours: [...], * }); * }, []); * } * ``` */ export { HelpProvider, useHelp, useHelpArticles, useHelpTours } from './HelpProvider'; export { HelpButton } from './HelpButton'; export { HelpPanel } from './HelpPanel'; export type { HelpArticle, HelpTour, TourStep, SupportTicket, HelpContent, HelpTab, HelpContext, HelpContextState, HelpContextActions, } from './types'; export type { HelpProviderProps } from './HelpProvider'; export type { HelpButtonProps } from './HelpButton'; export type { HelpPanelProps } from './HelpPanel'; //# sourceMappingURL=index.d.ts.map