/** * MCP Tool: list_feature_specs * Browse and filter all feature specifications for a project. * * Unlike get_feature_spec (which requires a spec_id or search keyword), * this tool returns all specs with optional filtering — the equivalent of * the VS Code extension's Feature Specs sidebar panel. * * Use this to get an overview of what's planned, in progress, or completed. */ import { z } from 'zod'; export declare const ListFeatureSpecsInput: z.ZodObject<{ domain: z.ZodOptional; project_id: z.ZodOptional; status: z.ZodOptional, "many">>; priority: z.ZodOptional, "many">>; feature_type: z.ZodOptional, "many">>; tags: z.ZodOptional>; module: z.ZodOptional>; source: z.ZodOptional>; include_stats: z.ZodDefault>; }, "strip", z.ZodTypeAny, { include_stats: boolean; domain?: string | undefined; status?: ("planned" | "completed" | "in_progress" | "verified" | "deprecated")[] | undefined; source?: "user" | "system" | "seo_scan" | "security_scan" | "accessibility_scan" | undefined; project_id?: string | undefined; feature_type?: ("new_feature" | "enhancement" | "refactor" | "bug_fix")[] | undefined; priority?: ("critical" | "high" | "low" | "normal")[] | undefined; tags?: string[] | undefined; module?: "security" | "accessibility" | "seo" | undefined; }, { domain?: string | undefined; status?: ("planned" | "completed" | "in_progress" | "verified" | "deprecated")[] | undefined; source?: "user" | "system" | "seo_scan" | "security_scan" | "accessibility_scan" | undefined; project_id?: string | undefined; feature_type?: ("new_feature" | "enhancement" | "refactor" | "bug_fix")[] | undefined; priority?: ("critical" | "high" | "low" | "normal")[] | undefined; tags?: string[] | undefined; module?: "security" | "accessibility" | "seo" | undefined; include_stats?: boolean | undefined; }>; export type ListFeatureSpecsParams = z.infer; export declare function listFeatureSpecs(params: ListFeatureSpecsParams): Promise; //# sourceMappingURL=list-feature-specs.d.ts.map