import { Component } from 'react'; import './index.less'; declare class I18nSetter extends Component { state: { isShowSearchPopUp: boolean; isShowBindDataPopUp: boolean; i18nValue: {}; }; componentDidMount(): void; transfromI18nData: (i18nSchema: any) => any[]; onSearch(value: any, filterValue: any): void; showSearchPopUp: () => void; showBindDataPopUp: () => void; showBindData: () => void; clearI18n: () => void; setI18nValue: (i18nkey: any, i18nPageDataList: any) => { type: string; key: any; i18nDataList: any; inputValue: any; }; createNewI18nItemData: () => void; uniqueId: (prefix?: string) => string; onClickI18nItem: (i18nItem: any) => void; parseI18nValue2PropsValue: (i18nValue: any) => { type: string; key: any; }; renderI18nList: () => JSX.Element; onChange(value: any, type: any, e: any): void; i18nItemOnChange: (value: any, langKey: any) => void; updateI18nSchema: (i18nValue: any) => void; render(): JSX.Element; } export default I18nSetter;