import { Options, CompileCSourceResult } from"../types";
/**
* Compiles a C source String And resolves with the path of the executable
* @paramsourceCode
* @paramoptions
*/exportdeclarefunctioncompileCSource(sourceCode: string, options?: Options): Promise<CompileCSourceResult>;