import { ODataHttpMethods } from "@odata2ts/http-client-api"; export declare class RequestInfo { readonly method: ODataHttpMethods; readonly url: string; readonly headers?: Record | undefined; readonly data?: DataStructure | undefined; constructor(method: ODataHttpMethods, url: string, headers?: Record | undefined, data?: DataStructure | undefined); withData(data: NewDataStructure): RequestInfo; }