import OriginTable, { renderMap } from './table'; import Title from './title'; import Count from './count'; import Group from './group'; export type OPTableType = typeof OriginTable & { Title: typeof Title; Count: typeof Count; Group: typeof Group; renderMap: typeof renderMap; }; declare const OPTable: OPTableType; export default OPTable;