import type { BasicAuth } from "./controllers/ControllerBase"; import type { Lang } from "./lang"; interface Option { proxyServer?: string; watch?: boolean; lang: Lang; basicAuth?: BasicAuth; puppeteerIgnoreDefaultArgs?: string[]; } export declare const run: (baseUrl: string, userName: string, password: string, pluginPath: string, options: Option) => Promise; export {};