import { AuthenticatedMedusaRequest, MedusaNextFunction, MedusaResponse } from "@medusajs/framework"; /** * Binds the `:id` path parameter of the `/vendor/sellers/:id` subtree to the * seller the request is authenticated against. Mismatches are reported as * NOT_FOUND so the route cannot be used to probe for existing seller ids. */ export declare function ensureSellerIdParamMiddleware(req: AuthenticatedMedusaRequest, _res: MedusaResponse, next: MedusaNextFunction): Promise; /** * Binds the `:member_id` path parameter to a member of the authenticated * seller, so member management cannot reach another store's members. */ export declare function ensureSellerMemberParamMiddleware(req: AuthenticatedMedusaRequest, _res: MedusaResponse, next: MedusaNextFunction): Promise;