import type { LocalizedStepContent } from '@funnelsgrove/runtime'; export type RuntimeContent = { loadingLabel: string; unavailableTitle: string; unavailableDescription: string; retryLabel: string; continueLabel: string; }; export const runtimeContent = { defaultLocale: 'en', locales: { en: { loadingLabel: 'Loading', unavailableTitle: 'This experience is temporarily unavailable', unavailableDescription: 'Please check your connection and try again.', retryLabel: 'Try again', continueLabel: 'Continue', }, }, } as const satisfies LocalizedStepContent;