import { GlideElementDescriptor } from "./GlideElementDescriptor"; import { GlideLRUCache } from "./GlideLRUCache"; export declare class GlideController { constructor(); static putGlobal(name: string, value: any): void; static getGlobal(name: string): any; static exists(name: string): boolean; static getSandboxGlobal(name: string): any; static getCache(): GlideLRUCache; removeGlobal(name: string): void; evaluateAsObject(expression: string): any; evaluateAsObject(expression: string, ed: GlideElementDescriptor): any; }