import { FC } from 'react'; import './index.less'; import { LocaleItemType } from './LocaleItem'; import { I18nItemType } from '@lingxiteam/editor-types'; import { EditorPluginClass } from '../../utils/plugin/EditorPlugin'; export interface SearchLocaleProps { onClickItem?: (item: LocaleItemType) => void; onClickAdd?: () => void; i18n: I18nItemType; onClose?: () => void; editorPluginInst: EditorPluginClass; } declare const SearchLocale: FC; export default SearchLocale;