import type { OnInitParams, PageSpyPlugin } from '@huolala-tech/page-spy-types';
import { InitConfig } from '../config';
export default class PagePlugin implements PageSpyPlugin {
    name: string;
    static hasInitd: boolean;
    $pageSpyConfig: InitConfig | null;
    onInit({ config }: OnInitParams<InitConfig>): void;
    onReset(): void;
    static collectHtml(): {
        html: string;
        location: Location;
    };
}
