import { type LearningMiniAppProps } from '@contractspec/example.learning-journey-ui-shared'; type CoachingMiniAppProps = Omit & { progress?: LearningMiniAppProps['progress']; }; export declare function CoachingMiniApp({ track, progress: externalProgress, onStepComplete: externalOnStepComplete, onViewChange, initialView, }: CoachingMiniAppProps): import("react/jsx-runtime").JSX.Element; export {};