import * as abaplint from "@abaplint/core";
import { IStatementTranspiler } from "./_statement_transpiler";
import { Traversal } from "../traversal";
import { Chunk } from "../chunk";
export declare class DataTranspiler implements IStatementTranspiler {
    transpile(node: abaplint.Nodes.StatementNode, traversal: Traversal): Chunk;
    static findEnumDefault(scope: abaplint.ISpaghettiScopeNode, _enumType: abaplint.AbstractType): string | undefined;
    static buildValue(node: abaplint.Nodes.StatementNode, name: string, traversal: Traversal): string;
}
