import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const listIssuesTool: Tool; export declare function listIssues(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const getIssueTool: Tool; export declare function getIssue(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const createIssueTool: Tool; export declare function createIssue(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const updateIssueTool: Tool; export declare function updateIssue(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const deleteIssueTool: Tool; export declare function deleteIssue(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=issues.d.ts.map