import React from 'react'; import './index.less'; declare type Value = { en: string; 'zh-CN': string; 'zh-HK': string; 'ja': string; 'pt': string; }; interface TranslationProps { value: Value; onChange: (value: Value) => void; maxLength?: number; id?: string; } declare const Translation: React.FC; export default Translation;