import type { StoreLinkItem } from '../content/step-content.js'; export type SubscriptionHandoffContent = { kicker: string; title: string; copyWithQr: string; copyWithoutQr: string; note: string; openAppLabel: string; emailButtonLabel: string; emailSubject: string; emailIntro: string; emailOpenAppLabel: string; emailIosDeepLinkLabel: string; emailAndroidDeepLinkLabel: string; emailStoreLabels: { ios: string; android: string; }; storeLinks: readonly StoreLinkItem[]; emailSentStatus: string; autoOpenStatus: string; qrOpenLabel: string; }; type SubscriptionHandoffScreenProps = { stepId: string; completionMode?: 'step' | 'funnel'; content: SubscriptionHandoffContent; confirmationUrl?: string | null; nodeId?: string; }; export declare function SubscriptionHandoffScreen({ stepId, completionMode, content, confirmationUrl, nodeId, }: SubscriptionHandoffScreenProps): import("react/jsx-runtime").JSX.Element; export {};