import type { Page } from "puppeteer"; import type { BoundMessage } from "../messages"; import type { Lang } from "../lang"; import type { PluginSystemPageInterface } from "./PluginSystemPageInterface"; export declare const IMPORT_BUTTON_SELECTOR = "#page-admin-system-plugin-index-addplugin"; export declare class OldPluginSystemPage implements PluginSystemPageInterface { readyForImportButton(page: Page, boundMessage: BoundMessage): Promise; upload(page: Page, pluginPath: string, lang: Lang): Promise; }