/**
 * Compiles a Pascal source file.
 * @category Compilation
 * @param {string} inputFile - Source file to compile.
 * @param {string} outputFile - Output file name (or path).
 * @returns {Promise<{file: string}>}
 * @throws {@link CompilationFailedError} if compilation fails.
 */
export default function compile(inputFile: string, outputFile: string): Promise<{
    file: string;
}>;
//# sourceMappingURL=compile.d.ts.map