export declare const LifecycleConstant: { readonly firstScreen: "rLynxFirstScreen"; readonly updateFromRoot: "updateFromRoot"; readonly globalEventFromLepus: "globalEventFromLepus"; readonly jsReady: "rLynxJSReady"; readonly patchUpdate: "rLynxChange"; readonly publishEvent: "rLynxPublishEvent"; readonly updateMTRefInitValue: "rLynxChangeRefInitValue"; }; export type LifecycleConstant = (typeof LifecycleConstant)[keyof typeof LifecycleConstant]; export interface FirstScreenData { root: string; jsReadyEventIdSwap: Record; } export declare const NativeUpdateDataType: { readonly UPDATE: 0; readonly RESET: 1; }; export type NativeUpdateDataType = (typeof NativeUpdateDataType)[keyof typeof NativeUpdateDataType];