import { SwitchCaseStatement } from "./SwitchCaseStatement";
import { Statement } from "./Statement";
import { Expression } from "../expression/Expression";
export declare class SwitchStatement extends Statement {
    type: string;
    code: any;
    cases: SwitchCaseStatement[];
    discriminant: Expression;
    constructor(currentToken: any);
}
