import { Block } from "../../Block";
import { Expression } from "./Expression";
import { IdentifierLiteralExpression } from "./IdentifierLiteralExpression";
export declare class FunctionExpression extends Expression {
    type: string;
    code: any;
    params: IdentifierLiteralExpression[];
    body: Block;
    constructor(currentToken: any);
}
