export default InfiniteScrollTable; declare function InfiniteScrollTable({ tableColumns, tableData, onInfiniteScroll, isLoading, className, noDataText, getRowProps, columnMemoProps, }: { tableColumns: any; tableData: any; onInfiniteScroll: any; isLoading: any; className: any; noDataText: any; getRowProps: any; columnMemoProps: any; }): import("react/jsx-runtime").JSX.Element; declare namespace InfiniteScrollTable { namespace propTypes { export const tableColumns: PropTypes.Validator<(PropTypes.InferProps<{}> | null | undefined)[]>; export const tableData: PropTypes.Validator<(PropTypes.InferProps<{}> | null | undefined)[]>; export const onInfiniteScroll: PropTypes.Requireable<(...args: any[]) => any>; export const isLoading: PropTypes.Requireable; export const className: PropTypes.Requireable; export { rowContentPropType as noDataText }; export const getRowProps: PropTypes.Requireable<(...args: any[]) => any>; export const columnMemoProps: PropTypes.Requireable; } namespace defaultProps { export function onInfiniteScroll_1(offset: any): void; export { onInfiniteScroll_1 as onInfiniteScroll }; const isLoading_1: boolean; export { isLoading_1 as isLoading }; const className_1: string; export { className_1 as className }; export const noDataText: string; export function getRowProps_1(row: any): void; export { getRowProps_1 as getRowProps }; const columnMemoProps_1: never[]; export { columnMemoProps_1 as columnMemoProps }; } } import PropTypes from "prop-types"; declare const rowContentPropType: PropTypes.Requireable | null | undefined>>; import React from "react";