/**
 * @oas [post] /carts/{id}/taxes
 * summary: "Calculate Cart Taxes"
 * operationId: "PostCartsCartTaxes"
 * description: "Calculates taxes for a cart. Depending on the cart's region
 *   this may involve making 3rd party API calls to a Tax Provider service."
 * parameters:
 *   - (path) id=* {String} The Cart ID.
 * x-codeSamples:
 *   - lang: Shell
 *     label: cURL
 *     source: |
 *       curl --location --request POST 'https://medusa-url.com/store/carts/{id}/taxes'
 * tags:
 *   - Cart
 * responses:
 *   200:
 *     description: OK
 *     content:
 *       application/json:
 *         schema:
 *           $ref: "#/components/schemas/StoreCartsRes"
 *   "400":
 *     $ref: "#/components/responses/400_error"
 *   "404":
 *     $ref: "#/components/responses/not_found_error"
 *   "409":
 *     $ref: "#/components/responses/invalid_state_error"
 *   "422":
 *     $ref: "#/components/responses/invalid_request_error"
 *   "500":
 *     $ref: "#/components/responses/500_error"
 */
declare const _default: (req: any, res: any) => Promise<void>;
export default _default;
