interface CacheDataParams { url: string; method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'; headers?: { [key: string]: string; }; body?: Record; staleTimeMs?: number; } export declare function fetchWithCache({ url, method, headers, body, staleTimeMs, }: CacheDataParams): Promise; export {};