// global.d.ts export {}; declare global { interface Window { __testRunner?: any; __TWD_STATE__?: any; __TWD_MOCK_STATE__?: any; __twdCollectMock?: (mock: { alias: string; url: string; method: string; status: number; response: unknown; responseHeaders?: Record; urlRegex: boolean; testId: string; }) => void; } }