import { RowKey } from '@m4l/components'; import { UseRefreshData } from './types'; /** * Hook that manages the refresh of the data and the selected rows. * Note: This hook could be use in every module that needs to refresh the data and the selected rows. */ export declare const useRefreshData: (props: UseRefreshData) => { refresh: (rowParam?: TRow | RowKey) => void; onSelectedRowsChange: (newRowsSelectSet: ReadonlySet) => void; selectedRows: ReadonlySet; focusOnRowKey: RowKey | undefined; }; //# sourceMappingURL=useRefreshData.d.ts.map