import { BusinessService } from '~backend/business/business.service'; import { UserService } from '~backend/user/user.service'; import { BusinessShortUrl, RestaurantShortUrl, UserShortUrl } from '../customer-api.interface'; import { MembershipService } from '~backend/marketing/membership/membership.service'; export declare class ShortUrlController { private readonly businessService; private readonly userService; private readonly membershipService; constructor(businessService: BusinessService, userService: UserService, membershipService: MembershipService); getShortUrlResult(shortUrl: string): Promise; }