import type { CiConfig, NormalizedBuild } from './config.js'; export declare function listWorkflows(cfg: CiConfig): Promise<{ id: any; name: any; file: string; state: any; url: any; }[]>; export declare function triggerBuild(cfg: CiConfig, workflow: string, ref?: string, inputs?: Record): Promise; export declare function getBuildStatus(cfg: CiConfig, runId: string | number): Promise; export declare function listRecentBuilds(cfg: CiConfig, workflow?: string, limit?: number): Promise; export declare function cancelBuild(cfg: CiConfig, runId: string | number): Promise;