import type { JSRealm } from '../../types/index.js';
/**
 * Creates a isolated JavaScript context for executing mts code.
 * This context has its own global variables and functions.
 */
export declare function createIFrameRealm(parent: Node): Promise<JSRealm>;
