/** * Handles the add_observations tool request * @param args The arguments for the tool request * @param knowledgeGraphManager The KnowledgeGraphManager instance * @returns A response object with the result content */ export declare function handleAddObservations(args: Record, knowledgeGraphManager: any): Promise<{ content: Array<{ type: string; text: string; }>; }>;