import { createIsolation } from "jotai-scope"; import React from "react"; import tunnel from "tunnel-rat"; export type Tunnel = ReturnType; type TunnelsContextValue = { MainMenuTunnel: Tunnel; WelcomeScreenMenuHintTunnel: Tunnel; WelcomeScreenToolbarHintTunnel: Tunnel; WelcomeScreenHelpHintTunnel: Tunnel; WelcomeScreenCenterTunnel: Tunnel; FooterCenterTunnel: Tunnel; DefaultSidebarTriggerTunnel: Tunnel; DefaultSidebarTabTriggersTunnel: Tunnel; OverwriteConfirmDialogTunnel: Tunnel; TTDDialogTriggerTunnel: Tunnel; tunnelsJotai: ReturnType; }; export declare const TunnelsContext: React.Context; export declare const useTunnels: () => TunnelsContextValue; export declare const useInitializeTunnels: () => TunnelsContextValue; export {};