import { STObjectBase } from "../STObjectBase"; import { STContext } from "../STContext"; export declare class STJSObject extends STObjectBase { private jsObject; constructor(stContext: STContext, jsObject: any); getObject(): any; getObjectAs(castedType: { new (...args: any[]): T; }): T; getClassName(): string; toJSON(): string; toString(): string; }