import { FC, PropsWithChildren } from 'react'; interface IListProps { className?: string; titleClassName?: string; index?: string; id?: string; key: string; customWrapper?: boolean; } declare const List: FC>; export default List;