import { rest } from 'msw'; import { InitParams, MountParams } from '../index.js'; export type Params = Parameters[1]>; export type TestGuestWindow = Window & typeof globalThis & { __TEST__: { initOptions: InitParams; mountOptions: MountParams; }; }; export declare const getMajorMinorVersion: (version: string) => string; export declare const sendJS: (res: Params[1], ctx: Params[2], filePath: string) => Promise>; export declare const sendJSText: (res: Params[1], ctx: Params[2], fileContent: string) => Promise>; export declare const releaseJSThread: () => Promise; export declare const logger: import("@elliemae/pui-diagnostics").Logger;