export type TableFooterProps = { datasourceId: string; isLoading: boolean; itemCount?: number; onRefresh?: () => void; url?: string; }; export declare const TableFooter: ({ datasourceId, itemCount, onRefresh, isLoading, url, }: TableFooterProps) => JSX.Element | null;