export interface StepStrings { emoji: string; title: string; subtitle: string; body?: string[]; } export interface I18nStrings { welcome: { title: string; subtitle: string; }; step1: StepStrings; step2: StepStrings; step3: StepStrings; step4: StepStrings; step5: StepStrings; step6: StepStrings; appId: string; appCert: string; customerId: string; customerSecret: string; credentialsSaved: string; alreadyConfigured: string; asrProvider: string; asrRecommend: string; language: string; asrConfigured: string; llmProvider: string; apiKey: string; model: string; llmConfigured: string; ttsProvider: string; ttsApiKey: string; groupId: string; ttsConfigured: string; launchMode: string; launchConvoai: string; launchOpenclaw: string; verifying: string; verified: string; starting: string; agentLive: string; voiceLive: string; browserHint: string; enterHint: string; sessionComplete: string; viewReport: string; complete: string; panelRunning: string; panelConversation: string; panelTurns: string; panelAvgLatency: string; panelAdjust: string; panelSwitchModel: string; panelSwitchVendor: string; panelTemperature: string; panelMaxTokens: string; panelSystemPrompt: string; panelSwitchLang: string; panelSpeed: string; panelVolume: string; panelSilenceDuration: string; panelInterruptDuration: string; panelInterruptMode: string; panelBack: string; panelRestartWarning: string; panelUpdated: string; panelHistory: string; panelExit: string; panelCurrent: string; panelRange: string; } export declare function getStrings(lang: 'cn' | 'global'): I18nStrings;