/** * Knowledge Base – minimal public API */ export type { KnowledgeEntry, KnowledgeQuery, KnowledgeMatch, LoadedEntry } from './types'; export type { KnowledgeFilter, KnowledgeFilterContext, FilteredKnowledgeResult, } from './policy-types'; import { loadKnowledgeData } from './loader'; export { loadKnowledgeData }; import type { KnowledgeMatch } from './types'; import { findPolicyAwareKnowledgeMatches, getPolicyAwareKnowledgeSnippets } from './policy-aware-matcher'; export { findPolicyAwareKnowledgeMatches, getPolicyAwareKnowledgeSnippets }; export declare function getKnowledgeForCategory(category: 'dockerfile' | 'kubernetes' | 'security', text?: string, context?: { language?: string; framework?: string; environment?: string; }): KnowledgeMatch[]; //# sourceMappingURL=index.d.ts.map