import type { LinkItem, ReasonItem } from '../content/step-content.js'; export type ManageSubscriptionContent = { subscriptionsStage: { title: string; loadingLabel: string; emptyLabel: string; listAriaLabel: string; supportPrefix: string; continueLabel: string; rowSelectedLabel: string; rowSelectLabel: string; subscriptionSuffix: string; renewsOnPrefix: string; cancelScheduledLabel: string; notCancellableLabel: string; }; whyStage: { title: string; backLabel: string; reasonsAriaLabel: string; reasons: readonly ReasonItem[]; }; confirmStage: { title: string; reasonPrefix: string; selectedPlanPrefix: string; missingSelectionLabel: string; cancelLabel: string; cancellingLabel: string; backLabel: string; }; doneStage: { title: string; cancelledMessage: string; emptyMessage: string; returnHomeLabel: string; }; supportLink: LinkItem; errorMessages: { load: string; cancel: string; }; }; type ManageSubscriptionScreenProps = { stepId: string; content: ManageSubscriptionContent; homeStepId: string; nodeId?: string; }; export declare function ManageSubscriptionScreen({ stepId, content, homeStepId, nodeId, }: ManageSubscriptionScreenProps): import("react/jsx-runtime").JSX.Element; export {};