import { MedusaRequest, MedusaResponse } from "@medusajs/medusa"; import Stripe from "stripe"; import { AwilixContainer } from "awilix"; export declare const STRIPE_HOOK_RECEIVED_EVENT = "medusa.stripe_payment_intent_update"; export declare function constructWebhook({ signature, body, container }: { signature: string | string[] | undefined; body: any; container: AwilixContainer; }): Stripe.Event; export declare const POST: (req: MedusaRequest, response: MedusaResponse) => Promise;