import type { Tool } from '@modelcontextprotocol/sdk/types.js';
import { z } from 'zod';
import type { ToolResult } from '../types/mcp.js';
export declare const listCollectionsTool: Tool;
export declare function handleListCollections(params: unknown): Promise<ToolResult>;
export declare const getCollectionTool: Tool;
export declare function handleGetCollection(params: unknown): Promise<ToolResult>;
export declare const createCollectionTool: Tool;
export declare function handleCreateCollection(params: unknown): Promise<ToolResult>;
export declare const updateCollectionTool: Tool;
export declare function handleUpdateCollection(params: unknown): Promise<ToolResult>;
export declare const deleteCollectionTool: Tool;
export declare function handleDeleteCollection(params: unknown): Promise<ToolResult>;
export declare const collectionTools: z.objectOutputType<{
name: z.ZodString;
description: z.ZodOptional<z.ZodString>;
inputSchema: z.ZodObject<{
type: z.ZodLiteral<"object">;
properties: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
type: z.ZodLiteral<"object">;
properties: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
type: z.ZodLiteral<"object">;
properties: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
}, z.ZodTypeAny, "passthrough">>;
}, z.ZodTypeAny, "passthrough">[];
export declare const collectionHandlers: {
pb_collections_list: typeof handleListCollections;
pb_collections_get: typeof handleGetCollection;
pb_collections_create: typeof handleCreateCollection;
pb_collections_update: typeof handleUpdateCollection;
pb_collections_delete: typeof handleDeleteCollection;
};
//# sourceMappingURL=collections.d.ts.map