export declare const KnowledgeBaseToolStatus: { readonly Success: "success"; readonly NoMatchingDocuments: "no_matching_documents"; readonly NoResults: "no_results"; }; export type KnowledgeBaseToolStatus = (typeof KnowledgeBaseToolStatus)[keyof typeof KnowledgeBaseToolStatus];