import { Expression } from "./Expression";
export declare class IdentifierLiteralExpression extends Expression {
    currentToken: any;
    type: string;
    code: any;
    identifier: string;
    constructor(currentToken: any);
}
