interface Response { type: string; status: number; ok: boolean; statusText: string; body: Uint8Array; } declare function request(url: string, options?: RequestInit): Promise; declare const _default: typeof request; export default _default;