import ts from 'typescript';
import { ConvertContext } from '../../../core/converters';
import { NamedConvertedItem } from '../../../core/converters/models';
import { NodeConverter } from '../../../core/converters/node.converter';
export declare class VariableDeclarationConverter extends NodeConverter {
    convert(context: ConvertContext, node: ts.VariableDeclaration): NamedConvertedItem | undefined;
}
