export interface RequestOptions { body?: Record; headers?: Record; method: 'GET' | 'POST' | 'PATCH' | 'TRACE' | 'OPTIONS' | 'HEAD'; requestType?: 'form' | 'json'; url: string; } export declare function request(options: RequestOptions): Promise; //# sourceMappingURL=request.d.ts.map