/** Returns true if the environment supports dynamic JavaScript evaluation */ export declare function CanEvaluate(): boolean; /** * Evaluates code in the current environment. This function will throw if the * environment Content-Security-Policy does not support `unsafe-eval`. Use the * Environment.CanEvaluate() to determine if the environment supports Evaluate * before calling this function. */ export declare function Evaluate(...args: string[]): globalThis.Function;