interface FetchResponse { status: number; ok: boolean; body: string; json(): unknown; } interface FetchOptions { method?: string; headers?: Record; body?: string; } declare function fetch(url: string, options?: FetchOptions): Promise;