import ts from 'typescript';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export interface CreateIteratorIterableIteratorHelperOptions {
    readonly deserializeKey?: boolean;
    readonly mapKey?: (options: VisitOptions) => void;
    readonly mapValue?: (options: VisitOptions) => void;
}
export declare class CreateIteratorIterableIteratorHelper extends Helper {
    private readonly deserializeKey;
    private readonly mapKey;
    private readonly mapValue;
    constructor(options: CreateIteratorIterableIteratorHelperOptions);
    emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}
