import { type AbstractEndpoint, type EndpointResponse, FetchClient, type Options } from '@myparcel/sdk'; export declare class PdkFetchClient extends FetchClient { /** * Prepare and execute the final request and handle the response. */ doRequest(endpoint: E, options: Options): Promise>; /** * If the url already contains a query string, append the parameters with an ampersand instead. */ protected createUrl(endpoint: E, options: Options): string; }