import React from "react"; export interface ListMetaProps { loading: boolean; currentCount: number; totalCount: number; } export declare const ListMeta: (props: ListMetaProps) => React.JSX.Element | null;