/** * Use named imports to improve tree-shaking capabilities. */ import { type z } from 'zod'; export declare const ConfigureParams: z.ZodObject<{ configFilePath: z.ZodOptional; }, z.core.$strip>; export type ConfigureParams = z.infer; export declare const ConfigureResult: z.ZodObject<{ version: z.ZodString; }, z.core.$strip>; export type ConfigureResult = z.infer; export declare const Location: z.ZodObject<{ start: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; export type Location = z.infer; /** * Represents a file or directory and an optional range within that file. */ export declare const FileRange: z.ZodObject<{ path: z.ZodString; range: z.ZodOptional; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>; export type FileRange = z.infer; export declare const DiscoverParams: z.ZodObject<{ files: z.ZodOptional; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>; export type DiscoverParams = z.infer; export declare const DiscoveredMutant: z.ZodObject<{ id: z.ZodString; location: z.ZodObject<{ start: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; }, z.core.$strip>; export type DiscoveredMutant = z.infer; export declare const DiscoveredFile: z.ZodObject<{ mutants: z.ZodArray; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; export type DiscoveredFile = z.infer; export declare const DiscoveredFiles: z.ZodRecord; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>; export type DiscoveredFiles = z.infer; export declare const DiscoverResult: z.ZodObject<{ files: z.ZodRecord; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>; export type DiscoverResult = z.infer; /** * The specific targets to run mutation testing on, or if both properties are left undefined: run mutation testing on all files in the current project. * Only one of the two properties should be set. * If both properties are set, the `mutants` property takes precedence. */ export declare const MutationTestParams: z.ZodObject<{ files: z.ZodOptional; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>>; mutants: z.ZodOptional; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>; export type MutationTestParams = z.infer; declare const MutantStatus: z.ZodEnum<{ Killed: "Killed"; Survived: "Survived"; NoCoverage: "NoCoverage"; CompileError: "CompileError"; RuntimeError: "RuntimeError"; Timeout: "Timeout"; Ignored: "Ignored"; Pending: "Pending"; }>; export type MutantStatus = z.infer; export declare const MutantResult: z.ZodObject<{ id: z.ZodString; location: z.ZodObject<{ start: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; coveredBy: z.ZodOptional>; duration: z.ZodOptional; killedBy: z.ZodOptional>; static: z.ZodOptional; status: z.ZodEnum<{ Killed: "Killed"; Survived: "Survived"; NoCoverage: "NoCoverage"; CompileError: "CompileError"; RuntimeError: "RuntimeError"; Timeout: "Timeout"; Ignored: "Ignored"; Pending: "Pending"; }>; statusReason: z.ZodOptional; testsCompleted: z.ZodOptional; }, z.core.$strip>; export type MutantResult = z.infer; export declare const MutantResultFile: z.ZodObject<{ mutants: z.ZodArray; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; coveredBy: z.ZodOptional>; duration: z.ZodOptional; killedBy: z.ZodOptional>; static: z.ZodOptional; status: z.ZodEnum<{ Killed: "Killed"; Survived: "Survived"; NoCoverage: "NoCoverage"; CompileError: "CompileError"; RuntimeError: "RuntimeError"; Timeout: "Timeout"; Ignored: "Ignored"; Pending: "Pending"; }>; statusReason: z.ZodOptional; testsCompleted: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; export type MutantResultFile = z.infer; export declare const MutationResultFiles: z.ZodRecord; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; coveredBy: z.ZodOptional>; duration: z.ZodOptional; killedBy: z.ZodOptional>; static: z.ZodOptional; status: z.ZodEnum<{ Killed: "Killed"; Survived: "Survived"; NoCoverage: "NoCoverage"; CompileError: "CompileError"; RuntimeError: "RuntimeError"; Timeout: "Timeout"; Ignored: "Ignored"; Pending: "Pending"; }>; statusReason: z.ZodOptional; testsCompleted: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>; export type MutationResultFiles = z.infer; export declare const MutationTestResult: z.ZodObject<{ files: z.ZodRecord; end: z.ZodObject<{ line: z.ZodNumber; column: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; description: z.ZodOptional; mutatorName: z.ZodString; replacement: z.ZodOptional; coveredBy: z.ZodOptional>; duration: z.ZodOptional; killedBy: z.ZodOptional>; static: z.ZodOptional; status: z.ZodEnum<{ Killed: "Killed"; Survived: "Survived"; NoCoverage: "NoCoverage"; CompileError: "CompileError"; RuntimeError: "RuntimeError"; Timeout: "Timeout"; Ignored: "Ignored"; Pending: "Pending"; }>; statusReason: z.ZodOptional; testsCompleted: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>; export type MutationTestResult = z.infer; export {}; //# sourceMappingURL=schema.d.ts.map