import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { Helper } from '../Helper'; export interface DebugLogHelperOptions { readonly count: number; } export declare class DebugLogHelper extends Helper { private readonly count; constructor(options: DebugLogHelperOptions); emit(sb: ScriptBuilder, node: ts.Node, optionsIn: VisitOptions): void; }