import type { H3Event } from 'h3'; import { type UseDataCacheOptions } from './useDataCache.js'; import { DataCacheHelper } from '../../helpers/DataCacheHelper.js'; export type UseDataCacheCallbackCallback = (helper?: DataCacheHelper) => Promise | T; export declare function useDataCacheCallback(key: string, cb: UseDataCacheCallbackCallback, event: H3Event, options?: UseDataCacheOptions): Promise;