import { NextFunction } from 'express'; import { AuthenticatedMedusaRequest, MedusaResponse } from '@medusajs/framework'; type CheckResourceOwnershipByResourceIdOptions = { entryPoint: string; filterField?: string; resourceId?: (req: AuthenticatedMedusaRequest) => string; }; export declare const checkCustomerResourceOwnershipByResourceId: ({ entryPoint, filterField, resourceId }: CheckResourceOwnershipByResourceIdOptions) => (req: AuthenticatedMedusaRequest, res: MedusaResponse, next: NextFunction) => Promise; export {}; //# sourceMappingURL=check-customer-ownership.d.ts.map