import type { Dispatch } from 'react'; import type { TableReducerAction } from './useTableReducer'; import type { UnknownObject } from '../helpers/functions'; import * as utils from '../helpers/functions'; interface UseAsyncDataOptions { data: string | T[]; dataKey: string; dataKeyResolver: utils.KeyResolverFn; dataRequestOptions: RequestInit; headers: utils.Headers; orderedHeaders: string[]; hideUnordered: boolean; dataSampling: number; dispatch: Dispatch>; } export declare function useAsyncData({ data, dataKey, dataKeyResolver, dataRequestOptions, headers, orderedHeaders, hideUnordered, dataSampling, dispatch, }: UseAsyncDataOptions): void; export {};