import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime'; const manifestStep = { id: 'review-plan', name: 'review-plan', path: '/review-plan', filePath: 'src/steps/step-review-plan.tsx', componentKey: 'stepReviewPlan', type: 'summary_confirmation', title: 'Review your plan', } as const satisfies FunnelManifestStep; const componentMeta = { id: 'review-plan', name: 'review-plan', type: 'summary_confirmation', figmaNodeId: 'golden:summary-confirmation', title: 'Review your plan', description: 'Review existing answers before continuing.', } as const satisfies FunnelStepMeta; export const goldenFixture = { stepType: 'summary_confirmation', manifestStep, componentMeta, actionOwner: 'either', } as const;