import { Config } from './_types/config';
/**
 * Runs the full CI/CD pipeline for a single project.
 * Internally converts Config into StepContext and executes all stages.
 *
 * @param config - The project configuration object
 */
export declare function runRayPipeline(config: Config): Promise<void>;
/**
 * Runs the full pipeline for multiple projects sequentially.
 *
 * @param configs - Array of project configurations
 */
export declare function runAllPipelines(configs: Config[]): Promise<void>;
