import CMakeCompiler from "./CMakeCompiler.js";
/**
 * Iterates over a list of values.
 *
 */
export default class GenericCMakeCompiler extends CMakeCompiler {
    c: string;
    cxx: string;
    constructor(c: string, cxx: string);
    getCxxCommand(): string;
    getCCommand(): string;
}
//# sourceMappingURL=GenericCMakeCompiler.d.ts.map