import { FC } from 'react'; import { LocaleItemProps, LocaleItemType } from './LocaleItem'; import { EditorPluginClass } from '../../utils/plugin/EditorPlugin'; interface RelieveProps extends Omit { pushToLocale: (item: LocaleItemType) => void; onClose?: () => void; langId: string; editorPluginInst: EditorPluginClass; } declare const Relieve: FC; export default Relieve;