import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime'; const manifestStep = { id: 'building-plan', name: 'building-plan', path: '/building-plan', filePath: 'src/steps/step-building-plan.tsx', componentKey: 'stepBuildingPlan', type: 'progress_interstitial', title: 'Building your plan', } as const satisfies FunnelManifestStep; const componentMeta = { id: 'building-plan', name: 'building-plan', type: 'progress_interstitial', figmaNodeId: 'golden:progress-interstitial', title: 'Building your plan', description: 'Show progress while preparing the next screen.', } as const satisfies FunnelStepMeta; export const goldenFixture = { stepType: 'progress_interstitial', manifestStep, componentMeta, semanticHelpers: [], isPaywall: false, } as const;