import * as React from "react"; import { IPagingInfo } from "./paging/IPagingInfo"; interface IProps { totalCount: number; pagingInfo: IPagingInfo; rowName?: string | ((count: number) => string); } export declare const TablePagination: React.FunctionComponent; export {};