import type { SocketContext } from './types.js'; export type OnWhatsAppResult = { exists: boolean; jid: string; lid?: string; /** PN counterpart, present when the server returned a LID as primary JID. */ pnJid?: string; isBusiness?: boolean; /** Verified business name (from usync ``), present for verified businesses. */ verifiedName?: string; }; export declare const makeContactMethods: (ctx: SocketContext) => { onWhatsApp: (...jids: string[]) => Promise; profilePictureUrl: (jid: string, type?: "preview" | "image") => Promise; fetchUserInfo: (...jids: string[]) => Promise>; }; //# sourceMappingURL=contacts.d.ts.map