import type { HybridBridge } from '../miniprogram/hybridBridge'; export interface HybridBridgeLJ { getStaticData: (functionName: string) => void; callAndBackfeed: (msg: string) => void; callAndListen: (msg: string) => void; } type CustomWindow = Window & { webkit: { messageHandlers: { realsee?: Worker; }; }; HybridBridgeLJ?: HybridBridgeLJ; __Realsee_WxMini_HybridBridge__?: HybridBridge; }; export declare const getSafelyWindow: () => CustomWindow | undefined; export {};