import * as ts from "typescript";
import { Transformation } from "../../output/transformation";
import { NodeVisitor } from "../visitor";
export declare class ObjectLiteralExpressionVisitor extends NodeVisitor {
    visit(node: ts.ObjectLiteralExpression): Transformation[];
    private getParentTypePair;
    private getDirectNodeTypePair;
    private returnForBlankDictionary;
    private returnForPopulatingDictionary;
}
