import { FunctionDeclarationStatement } from "./FunctionDeclarationStatement";
import { IdentifierLiteralExpression } from "../expression/IdentifierLiteralExpression";
import { Statement } from "./Statement";
export declare class ClassDeclarationStatement extends Statement {
    type: string;
    code: any;
    super: IdentifierLiteralExpression;
    className: IdentifierLiteralExpression;
    methods: FunctionDeclarationStatement[];
    constructor(currentToken: any);
}
