import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const listWikiPagesTool: Tool; export declare function listWikiPages(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const getWikiPageTool: Tool; export declare function getWikiPage(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const createOrUpdateWikiPageTool: Tool; export declare function createOrUpdateWikiPage(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const deleteWikiPageTool: Tool; export declare function deleteWikiPage(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=wiki.d.ts.map