import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { z } from 'zod'; declare const ListIssuesSchema: z.ZodObject<{ projectKey: z.ZodString; branch: z.ZodOptional; types: z.ZodOptional; severities: z.ZodOptional; statuses: z.ZodOptional; assignees: z.ZodOptional; tags: z.ZodOptional; limit: z.ZodDefault>; }, "strip", z.ZodTypeAny, { projectKey: string; limit: number; branch?: string | undefined; types?: string | undefined; severities?: string | undefined; statuses?: string | undefined; assignees?: string | undefined; tags?: string | undefined; }, { projectKey: string; branch?: string | undefined; types?: string | undefined; severities?: string | undefined; statuses?: string | undefined; assignees?: string | undefined; tags?: string | undefined; limit?: number | undefined; }>; export declare const listIssuesTool: Tool; export declare function listIssuesHandler(params: z.infer): Promise; export {}; //# sourceMappingURL=list-issues.d.ts.map