#!/usr/bin/env node export type CiPreflightMode = 'full' | 'quick'; export interface CiPreflightStage { id: string; label: string; command: string; args: string[]; modes: CiPreflightMode[]; } export declare const CI_PREFLIGHT_STAGES: readonly CiPreflightStage[]; export interface CiPreflightOptions { mode: CiPreflightMode; only: string[] | null; cwd?: string; } export declare function resolveCiPreflightStages(options: CiPreflightOptions): CiPreflightStage[]; export declare function runCiPreflight(options: CiPreflightOptions): void; //# sourceMappingURL=ci-preflight.d.ts.map