/**
 * Checks whether the Free Pascal compiler is present in the system path.
 * @category Compiler Detection
 * @param {string} compilerName - The name of the compiler executable.
 * @returns {Promise<{version: string}>}
 * @throws {@link CompilerNotFoundError} if no compiler is found.
 */
export default function checkCompiler(compilerName?: string): Promise<{
    version: string;
}>;
//# sourceMappingURL=checkCompiler.d.ts.map