/**
 * Interface that provides information about a CMake-supported compiler.
 *
 */
export default abstract class CMakeCompiler {
    abstract getCxxCommand(): string;
    abstract getCCommand(): string;
    /**
     * Generates the compiler-related arguments that are required when calling the CMake command.
     */
    getCommandArgs(): string;
}
//# sourceMappingURL=CMakeCompiler.d.ts.map