import { FC } from 'react'; import './index.less'; import { I18nItemType } from '@lingxiteam/editor-types'; export interface LocaleItemType { key: string; 'zh-CN': string; 'en-US': string; } export interface LocaleItemProps { onClick?: (item: LocaleItemType) => void; item: LocaleItemType; disabled?: boolean; onEdit?: (item: LocaleItemType) => void; i18n: I18nItemType; onClose?: () => void; } declare const LocaleItem: FC; export default LocaleItem;