import type { openBrowser } from '@remotion/renderer'; import type { Await } from '@remotion/serverless-client'; import type { ForgetBrowserEventLoop, GetBrowserInstance } from './provider-implementation'; export type LaunchedBrowser = { instance: Await>; configurationString: string; }; export declare const forgetBrowserEventLoopImplementation: ForgetBrowserEventLoop; export declare const getBrowserInstanceImplementation: GetBrowserInstance;