import * as abaplint from "@abaplint/core";
import { Chunk } from "../chunk";
import { Traversal } from "../traversal";
import { IStatementTranspiler } from "./_statement_transpiler";
export declare class EndWhileTranspiler implements IStatementTranspiler {
    private readonly syIndexBackup;
    constructor(syIndexBackup: string);
    transpile(node: abaplint.Nodes.StatementNode, traversal: Traversal): Chunk;
}
