export interface INetworkSender { get(url: string, options: any): Promise; post(url: string, data: any, options: any): Promise; } export declare class HttpResponse { status: number; data: any; headers: any; constructor(status: any, data: any, headers: any); } export declare class FetchNetwork implements INetworkSender { fetch: (url: string, options: any) => Promise; constructor(fetch: (url: string, options: any) => Promise); get(url: string, options: any): Promise; post(url: string, data: any, options: any): Promise; handleFetch(res: any): any; } //# sourceMappingURL=NetworkSender.d.ts.map