import { IdentifierLiteralExpression } from "./IdentifierLiteralExpression";
import { AstNode } from "../AstNode";
import { StringLiteralExpression } from "./StringLiteralExpression";
import { Expression } from "./Expression";
export declare class ObjectLiteralExpression extends Expression {
    type: string;
    code: any;
    properties: Array<{
        key: StringLiteralExpression | IdentifierLiteralExpression;
        value: AstNode;
    }>;
    constructor(currentToken: any);
}
