declare type RequestOptions = { method?: string; headers?: Record; }; declare type RequestPayload = { json: () => Promise; text: () => Promise; }; export declare type IFetcher = (url: string, options?: Readonly) => Promise>; export {};