/** * @fileoverview Zod validation schema for opensip-cli.config.yml * * Defines the schema for signal producer configuration (fitness, * simulation) and file targeting. These settings live alongside the target * definitions in opensip-cli.config.yml. */ import { z } from 'zod'; /** Root schema for opensip-cli.config.yml validation */ export declare const SignalersConfigSchema: z.ZodObject<{ schemaVersion: z.ZodDefault; globalExcludes: z.ZodDefault>; targets: z.ZodDefault; exclude: z.ZodOptional>; tags: z.ZodOptional>; languages: z.ZodOptional>; concerns: z.ZodOptional>; conventions: z.ZodOptional>; alwaysUsed: z.ZodOptional>; usedExports: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>>>; checkOverrides: z.ZodOptional]>>>; fitness: z.ZodPreprocess; maxParallel: z.ZodOptional; timeout: z.ZodOptional; recipe: z.ZodOptional; failOnErrors: z.ZodDefault>; failOnWarnings: z.ZodDefault>; disabledChecks: z.ZodDefault>>; }, z.core.$strip>>; simulation: z.ZodPreprocess; }, z.core.$strip>>; cli: z.ZodPreprocess>; verbose: z.ZodOptional; json: z.ZodOptional; reportTo: z.ZodOptional; apiKey: z.ZodOptional; fileTypes: z.ZodOptional>; ignore: z.ZodOptional>; debug: z.ZodOptional; ui: z.ZodOptional>; }, z.core.$strip>>; cloud: z.ZodOptional; endpoint: z.ZodOptional; }, z.core.$strip>>; artifacts: z.ZodOptional; }, z.core.$strict>>; sessions: z.ZodOptional; maxAgeDays: z.ZodDefault; maxSizeMb: z.ZodDefault; }, z.core.$strict>>; }, z.core.$strip>>; dashboard: z.ZodPreprocess; }, z.core.$strip>>; }, z.core.$strip>; //# sourceMappingURL=schema.d.ts.map