export declare class GlideScriptedHierarchicalWorker { /** * Adds a constructor argument by name and value. */ putConstructorArg(name: string, value: any): void; /** * Adds a method argument by name and value. */ putMethodArg(name: string, value: any): void; /** * Sets the name of the script include to execute. */ setScriptIncludeName(scriptInclude: string): void; /** * Sets the method of the script include to execute. */ setScriptIncludeMethod(scriptIncludeMethod: string): void; setBackground(b: boolean): void; setCannotCancel(b: boolean): void; setProgressName(name: string): void; start(): void; getProgressID(): string; setSource(source: string): void; setSourceTable(sourceTable: string): void; }