import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime'; const manifestStep = { id: 'save-offer', name: 'save-offer', path: '/save-offer', filePath: 'src/steps/step-save-offer.tsx', componentKey: 'stepSaveOffer', type: 'cancellation_offer', kind: 'cancellation', title: 'Stay with us', } as const satisfies FunnelManifestStep; const componentMeta = { id: 'save-offer', name: 'save-offer', type: 'cancellation_offer', kind: 'cancellation', figmaNodeId: 'golden:cancellation-offer', title: 'Stay with us', description: 'Offer a retention path before cancellation.', } as const satisfies FunnelStepMeta; export const goldenFixture = { stepType: 'cancellation_offer', manifestStep, componentMeta, helper: 'runtime subscription helpers', } as const;