/** * Interface to use the useRefreshData hook * @param TRow - Type of the rows */ export interface UseRefreshData { /** * Function to refresh the data */ refreshPaginate: () => void; /** * Rows to refresh */ rows: TRow[]; /** * Function to get the row key */ rowKeyGetter: (row: TRow) => number | string; } //# sourceMappingURL=types.d.ts.map