/** * Parse the body in a fetched response using Strategy pattern */ import { ParsablePromise, ParseOptions, ParseResult, SafeParsablePromise } from './types'; export declare function parseFetch(response: Response, options?: ParseOptions): Promise; export declare function safeParseFetch(response: Response, options?: ParseOptions): Promise>; export declare function withParse(fetchFn: typeof fetch): (input: RequestInfo | URL, init?: RequestInit) => ParsablePromise; export declare function withSafeParse(fetchFn: typeof fetch): (input: RequestInfo | URL, init?: RequestInit) => SafeParsablePromise; //# sourceMappingURL=parseFetchResponse.d.ts.map