import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface InvokeCallHelperOptions { readonly bindThis?: boolean; readonly overwriteThis?: boolean; readonly noArgs?: boolean; } export declare class InvokeCallHelper extends Helper { static getKey(options?: InvokeCallHelperOptions): string; private readonly bindThis; private readonly overwriteThis; private readonly noArgs; constructor(options?: InvokeCallHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, optionsIn: VisitOptions): void; }