export declare class ShrinkValidationError extends Error { readonly desiredPatterns: string[]; readonly errorMatch: string; /** * Capture a validation error from a shrink operation * * @param desiredPatterns the patterns the user wanted to shrink * @param excludedPatterns the patterns the user wanted to exclude * @param errorMatch the undesired match that triggered the bug */ constructor(desiredPatterns: string[], errorMatch: string); } //# sourceMappingURL=errors.d.ts.map