import ts from 'typescript'; import { ScriptBuilder } from '../../sb'; import { VisitOptions } from '../../types'; import { TypedHelper, TypedHelperOptions } from '../types'; export interface ObjectBindingHelperOptions extends TypedHelperOptions { readonly value?: ts.Node; } export declare class ObjectBindingHelper extends TypedHelper { private readonly value?; constructor(options: ObjectBindingHelperOptions); emit(sb: ScriptBuilder, node: ts.ObjectBindingPattern, optionsIn: VisitOptions): void; }