import { z } from 'zod'; /** * Zod schema for feature extraction options */ export declare const FeatureOptionsSchema: z.ZodObject<{ type: z.ZodEnum<{ default: "default"; custom: "custom"; advanced: "advanced"; }>; window: z.ZodDefault; includeFeatures: z.ZodOptional>>; customFeatures: z.ZodOptional>>; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type FeatureOptions = z.infer; /** * Validated type after parsing */ export type FeatureOptionsValidated = z.output;