import type { Page } from 'puppeteer'; import type { AfpOptions, ProtectedPage } from '../types'; import { Afp } from '../core/afp'; /** * Apply a coherent anti-fingerprint identity to a single Puppeteer page. * * @example * const page = await browser.newPage(); * await protectPage(page, { seed: 'my-stable-seed', profile: 'desktop-chrome-win' }); */ export declare function protectPage(page: Page, options?: AfpOptions): Promise; /** Attach the read-only fingerprint + rotate helper to a page. */ export declare function decorate(page: Page, afp: Afp): ProtectedPage; //# sourceMappingURL=page.d.ts.map