export declare type Options = { headers?: Record; body?: string; method?: "POST"; }; declare const wrappedFetch: (url: string, body: T, options?: Options) => Promise<{ status: number; ok: boolean; body: any; }>; export { wrappedFetch as fetch };