/** * 猎聘聊天列表命令 - 招聘者端 */ import { Page } from 'puppeteer-core'; export interface ChatlistOptions { limit?: number; } export declare function chatlist(page: Page, options: ChatlistOptions): Promise; /** 聊天列表命令定义 */ export declare const chatlistCommand: { name: string; description: string; args: { name: string; type: string; default: number; help: string; }[]; columns: { header: string; key: string; width: number; }[]; func: typeof chatlist; }; //# sourceMappingURL=chatlist.d.ts.map