import type { AuthContext } from '../types.js'; export declare const deleteLibraryTool: { name: string; description: string; inputSchema: { type: string; properties: { libraryId: { type: string; description: string; }; workspaceId: { type: string; description: string; }; }; required: string[]; }; }; export declare function deleteLibrary(auth: AuthContext, args: any): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=delete-library.d.ts.map