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