import * as puppeteer from 'puppeteer'; import { ScrapQrcode } from '../api/model/qrcode'; import { Whatsapp } from '../api/whatsapp'; export declare const getInterfaceStatus: (waPage: puppeteer.Page) => Promise; /** * Validates if client is authenticated * @returns true if is authenticated, false otherwise * @param waPage */ export declare const isAuthenticated: (waPage: puppeteer.Page) => Promise; export declare const needsToScan: (waPage: puppeteer.Page) => Promise; export declare const isInsideChats: (waPage: puppeteer.Page) => Promise; export declare const isConnectingToPhone: (waPage: puppeteer.Page) => Promise; export declare function asciiQr(code: string): Promise; export declare function retrieveQR(page: puppeteer.Page): Promise; export declare function checkDisconnect(page: puppeteer.Page, wpp: Whatsapp): Promise; export declare function checkStore(page: puppeteer.Page, client: Whatsapp): Promise;