import { E2EPage } from '@stencil/core/testing'; import { Page as PuppeteerPage } from 'puppeteer'; export type SlE2EPage = E2EPage & Pick; type SlE2EPageOptions = { html: string; viewportWidth: number; }; export declare function createPage(optionsOrHtml?: string | SlE2EPageOptions): Promise; export declare function registerMockDomParser(): void; export {};