import ts from 'typescript';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export interface CreateConstructArrayHelperOptions {
    readonly body: (options: VisitOptions) => void;
    readonly withScope: boolean;
}
export declare class CreateConstructArrayHelper extends Helper {
    private readonly body;
    private readonly withScope;
    constructor({ body, withScope }: CreateConstructArrayHelperOptions);
    emit(sb: ScriptBuilder, node: ts.Node, outerOptions: VisitOptions): void;
}
