interface ApiResponseType { ok: boolean; status: number; statusText: string; text: () => Promise; json: () => Promise>; } type Result = Promise; export declare function fetch(uri: string, options?: { method?: 'GET' | 'POST'; body?: string; }): Result; export {};