import { Context } from "../Context";
export type BodyDataType = "json" | "form-urlencoded" | "form-data" | "xml" | undefined;
/**
 * Tries to determine the type of the body data based on the content type header.
 */
export declare function getBodyDataType(headers: Context["headers"]): BodyDataType;
