import { Page } from 'puppeteer'; import { Whatsapp } from '../api/whatsapp'; import { CreateConfig } from '../config/create-config'; /** * consult status of whatsapp client */ /** * Should be called to initialize whatsapp client */ export declare function create(session?: string, catchQR?: (qrCode: string, asciiQR: string) => void, statusFind?: (statusGet: string) => void, options?: CreateConfig): Promise; export declare const kill: (p: Page) => Promise;