import { ILog, LogType } from '../../types'; export declare const stringifyData: (data: any) => string; export declare const getRequestBody: (dataSent: any) => string; export declare const getResponseBody: (responseType: string, response?: any) => Promise; export declare const parseResponseBlob: (response: Blob) => Promise; export declare class RNRequest implements ILog { _id: number; type: LogType; startTime: number; readyState: number; url: string; shortUrl?: string; method: string; status: number; endTime: number; timeout?: number; dataSent: string; requestHeaders?: any; responseHeaders?: any; responseContentType?: string; responseSize?: number; responseType?: string; responseURL?: string; response: string; constructor(attributes?: any); } export default RNRequest;