export type VisState = { [projectPath: string]: Promise; }; export type VisProjectState = { projectRoot: string; testTimeout: number; hookTimeout: number; snapshotRootDir: string; snapshotBaselineDir: string; snapshotResultDir: string; snapshotDiffDir: string; snapshotRootPath: string; subjectDataTestId: string | undefined; suites: Record; }>; }; export type PartialBrowserCommandContext = { project: { config: { name: string; root: string; snapshotOptions: { updateSnapshot: 'all' | 'new' | 'none'; }; testTimeout: number; hookTimeout: number; }; vite: { config: { test?: { name?: string | undefined; }; }; }; }; provider: { name: string; browserName?: string | undefined; options?: { headless?: boolean | undefined; screenshotFailures?: boolean | undefined; screenshotDirectory?: string | undefined; }; }; testPath: string; }; //# sourceMappingURL=vis_context.types.d.ts.map