import { STObjectBase } from "./STObjectBase"; /** * A wrapper-class to access and manipulate strings * from Smalltalk code. */ export declare class STString extends STObjectBase { readonly value: string; constructor(value: string); toString(): string; getClassName(): string; }