import React, { FC } from 'react'; import './index.less'; import { LocaleItemType } from '../I18nNode/LocaleItem'; interface LanguageSelectTableProps { style?: React.CSSProperties; onSelect?: (langValue: string, item: LocaleItemType) => void; onConfirm: (opts: { currentCode: string; }) => void; value?: string; onClose?: () => void; paginationProps?: { total: number; pageNum: number; }; locales?: any; queryLocales: (pageNum: number) => void; } declare const LanguageSelectTable: FC; export default LanguageSelectTable;