import { AuthenticatedSession, Customer, RequestContext } from '@vendure/core'; import { AuthenticationService } from '../service/authentication.service'; export declare class ChatbotAdminResolver { private authenticationService; constructor(authenticationService: AuthenticationService); customerByPhone(ctx: RequestContext, args: { phoneNumber: string; }): Promise; tokenByPhone(ctx: RequestContext, args: { phoneNumber: string; }): Promise; }