export declare const requestHelper: <T>({ body, url, method, headers, format, }: {
    url: string;
    format?: "json" | "text";
    method?: "POST" | "GET" | "PUT" | "DELETE";
    headers?: Record<string, string>;
    body?: URLSearchParams | string | FormData;
}) => Promise<T>;
//# sourceMappingURL=network.service.d.ts.map