/// import { ComponentWithContentProps, GenericSBProps } from '../../types'; interface ProgressionBarProps extends GenericSBProps { pickYourDeviceLabel: string; customizeDeviceLabel: string; yourSubscriptionLabel: string; vasStepperLabel: string; checkoutLabel: string; accessoriesLabel: string; selectedStep?: string; optionalLabelText: string; } declare const ProgressionBar: ({ content }: ComponentWithContentProps) => JSX.Element; export default ProgressionBar;