import React from "react"; export declare const DATALIST_TOTALCOUNT_TEST_ID = "ATL-DataList-TotalCount"; interface DataListTotalCountProps { readonly totalCount?: number | null; readonly loading?: boolean; } export declare function DataListTotalCount({ totalCount, loading, }: DataListTotalCountProps): React.JSX.Element | null; export {};