import { TableProps } from "antd"; import React from "react"; import "./Table.scss"; type Props = { loading?: boolean; infiniteScrollConfig?: { callback: () => void; numberOfObserverSkippedFromLast?: number; hasMore?: boolean; }; flexHeight?: boolean; horizontalScrollConfig?: { enable: boolean; threshold: number; }; }; declare const StarshipTable: (props: TableProps & Props) => React.JSX.Element; export default StarshipTable;