import ts from 'typescript';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export interface WrapValRecursiveHelperOptions {
    readonly checkValue?: boolean;
    readonly type: ts.Type | undefined;
    readonly optional?: boolean;
}
export declare class WrapValRecursiveHelper extends Helper {
    private readonly checkValue;
    private readonly type;
    private readonly optional?;
    constructor(options: WrapValRecursiveHelperOptions);
    emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}
