import { FC, PropsWithChildren } from 'react'; import List from './List'; interface IIndexesProps { className?: string; indexList?: string[]; } declare const Indexes: FC> & { List: typeof List; }; export default Indexes;