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