export type RuntimeSupportStrategy = "iife" | "esm" | "preloaded"; export type RuntimeSupportCheckMode = "off" | "on"; export declare function shouldProbeRuntimeSupport(strategy: RuntimeSupportStrategy, mode: RuntimeSupportCheckMode): boolean;