import * as React from 'react'; interface TabMapListProps { value: number; onSelectMapValue?: (mapValue: number) => void; } declare class TabMapList extends React.Component { handleSelectMapValue(mapValue: number): void; render(): JSX.Element; } export default TabMapList;