/** * Get `Content-Length` and `Content-Type` headers for JSON body. */ export declare const getContentJsonHeaders: (bodyAsString: string | undefined) => Readonly<{ "content-length": string; "content-type": "application/json; charset=UTF-8"; }>;