export type RuntimeMode = 'test' | 'live'; export type FunnelMode = 'test' | 'production'; export declare const isSystemPreviewHostname: (value: string) => boolean; export declare const isEditorEnabled: () => boolean; export declare const getFunnelMode: () => FunnelMode; export declare const getRuntimeMode: () => RuntimeMode; export declare const useRuntimeMode: () => readonly [RuntimeMode]; export declare const useRuntimeEnvironmentReady: () => boolean;