type HttpClientConfig = {
    backendUrl?: string;
    pathPrefix: string;
    includeCredentials?: boolean;
    headers?: Record<string, string>;
};
declare const createHttpClient: (config: HttpClientConfig) => {
    request: <T>({ route, body, method, }: {
        route: string;
        body?: unknown;
        method?: "GET" | "POST";
    }) => Promise<T>;
};

export { type HttpClientConfig, createHttpClient };
