import type { TwinMode } from './types.js'; export type { TwinMode } from './types.js'; export type FetchLike = (input: string | URL | Request, init?: RequestInit) => Promise; export interface WrapFetchOptions { mode: TwinMode; recordingsDir: string; hashHeaders?: string[]; } export declare function wrapFetch(realFetch: FetchLike, options: WrapFetchOptions): FetchLike; //# sourceMappingURL=wrap-fetch.d.ts.map