/** * CI/CD Integration - Generate workflow templates for popular CI providers. */ export type CIProvider = 'github' | 'gitlab' | 'azure-pipelines' | 'circleci' | 'jenkins'; export interface CIOptions { provider: CIProvider; testPath?: string; outputDir?: string; output?: string; nodeVersion?: string; } /** * Get list of supported CI providers. */ export declare function getSupportedProviders(): CIProvider[]; /** * Generate CI workflow files. */ export declare function generateCI(options: CIOptions): string; /** * Generate CI content without writing to disk. */ export declare function generateCIContent(options: CIOptions): string; //# sourceMappingURL=ci.d.ts.map