import { StatementMaster } from "../../models";
declare class CobolVariable {
    variableName: string;
    defaultValue: string;
    constructor(variableName: string, defaultValue: string);
}
declare class StatementProcessor {
    static performVarying(allLines: StatementMaster[], methodNameList: string[], cobolVariableList: CobolVariable[]): StatementMaster[];
    static conversionDoWhile(modifiedLine: string, methodNameList: string[], cobolVariableList: CobolVariable[]): string[];
    private static whileConversion;
    static performThruConversion(text: string, methodList: string[]): string[];
    static removeDotFromLines(allLines: StatementMaster[]): StatementMaster[];
}
export { StatementProcessor, CobolVariable };
