import { AxiosRequestConfig } from "axios";
export type Primitive = string | number | boolean;
export type Value
= P | P[] | Record;
export type QueryValue = Value | Value | Value | undefined;
export type AnyQueryParams = Record;
export type HeaderValue = string | undefined;
export type AnyHeaderParams = Record;
export type AnyBodyParams = Record;
export type ParsedRequest = {
method: string;
path: string;
query: AnyQueryParams;
headers: AnyHeaderParams;
body: AnyBodyParams;
};
export declare const toAxiosRequest: (req: ParsedRequest) => AxiosRequestConfig;