import { MocksPattern, RunMode } from "../types"; import type { Test } from "testplane"; export type PluginConfig = { enabled: boolean; patterns: MocksPattern[]; browsers: string[]; mode: RunMode; dumpsDir: string | ((test: Test) => string); dumpsKey: (requestUrl: string) => string; gzipDumps: boolean; }; export declare function parseConfig(options: PluginConfig): PluginConfig;