import type { PlaywrightTestConfig } from "@playwright/test"; import type { Formatter } from "./writeFileWithPrettier"; /** * Augments a partial Playwright config with the Trackunit logs reporter and HAR folder env setup. * Call this in `playwright.config.ts` after `defaultPlaywrightConfig()`. * * @param config - Partial config from `defaultPlaywrightConfig()` * @param formatter - Prettier formatter used by `LogsReporter` to format JSON log files * @returns {Partial} A new partial config with the logs reporter merged into the reporter array */ export declare const setupPlugins: (config: Partial, formatter: Formatter) => Partial;