import { CacheService } from '@servicelabsco/nestjs-utility-services'; import { GchatPostingPayloadDto } from '../dtos/gchat.posting.payload.dto'; export declare class GchatService { protected readonly cacheService: CacheService; protected base_url: string; protected token: string; private chatClient; constructor(cacheService: CacheService); initClient(): Promise; getClient(): Promise; findUserByEmail(email: string): Promise; getParent(businessId: number, userId: number): Promise; sendMessage(options: GchatPostingPayloadDto): Promise; }