import { FC } from "react"; import "./index.css"; export interface ListProps { type: number; rows: number; } declare const List: FC; export default List;