import { STObjectBase } from "../STObjectBase"; /** * A Smalltalk object used to output information. * * Usually only one instance of this class will * be globally available to a Smalltalk application, * named "Transcript". */ export declare class STTranscript extends STObjectBase { constructor(); getClassName(): string; }