import React from 'react'; import { TdIndexesProps } from './type'; import { StyledProps } from '../common'; export interface IndexesProps extends TdIndexesProps, StyledProps { children?: React.ReactNode; } declare const Indexes: React.FC; export default Indexes;