/** * Get the system locale language code * @returns The system locale (e.g., 'zh', 'ja', 'en', etc.) */ export declare function getSystemLocale(): string; /** * Get translated description based on system locale * @param translations - Array of translation objects * @param systemLocale - The system locale (e.g., 'zh', 'ja') * @returns The translated description or original description if no translation found */ export declare function getTranslatedDescription(translations: any[] | undefined, systemLocale: string, originalDescription: string): string; //# sourceMappingURL=locale.d.ts.map