export declare class GlideScriptedProcessor { /** * Redirects to the specified URL */ redirect(url: string): void; /** * Encodes an object as a JSON string and writes it to the current URL */ writeJSON(jsonObject: Record): void; /** * Writes the specified string to the current URL */ writeOutput(s: string): void; /** * Writes the specified string to the current URL in the specified character-encoding */ writeOutput(contentType: string, s: string): void; constructor(); }