import { Block } from "../../Block";
import { AstNode } from "../AstNode";
import { Statement } from "./Statement";
export declare class SwitchCaseStatement extends Statement {
    type: string;
    code: any;
    consequent: Block;
    test: AstNode;
    isDefault: boolean;
    constructor(currentToken: any);
}
