/** * Article Management Tools */ export declare function articlesListTool(args: any): Promise<{ success: boolean; data: any; message: string; }>; export declare function articlesGetTool(args: any): Promise<{ success: boolean; data: any; }>; export declare function articlesCreateTool(args: any): Promise<{ success: boolean; data: any; message: string; }>; export declare function articlesUpdateTool(args: any): Promise<{ success: boolean; data: any; message: string; }>; export declare function articlesDeleteTool(args: any): Promise<{ success: boolean; message: string; }>; //# sourceMappingURL=articles.d.ts.map