import { FoundryState } from "./state.js"; import { FoundryUI } from "./ui/index.js"; import { FoundryCanvas } from "./canvas.js"; import { DeprecationTracker } from "./deprecations.js"; import { FoundryPage } from "./types/index.js"; /** * Extended Playwright test fixtures for Foundry VTT. */ export interface FoundryFixtures { /** Helper for Foundry VTT utilities. */ foundry: { /** Direct state manipulation. */ state: FoundryState; /** UI interaction and selectors. */ ui: FoundryUI; /** WebGL Canvas interaction. */ canvas: FoundryCanvas; }; /** Tracker for deprecation warnings. */ deprecationTracker: DeprecationTracker; /** The Playwright Page object. */ page: FoundryPage; } /** * Extended Playwright test fixture that monitors the browser console for critical errors and warnings, * and provides Foundry-specific utilities. */ export declare const test: import("@playwright/test").TestType; export { expect } from "@playwright/test";