/** * Knowledge Base – minimal public API */ export type { KnowledgeEntry, KnowledgeQuery, KnowledgeMatch, LoadedEntry } from './types.js'; export type { KnowledgeFilter, KnowledgeFilterContext, FilteredKnowledgeResult, } from './policy-types.js'; import { loadKnowledgeData } from './loader.js'; export { loadKnowledgeData }; import type { KnowledgeMatch } from './types.js'; import { findPolicyAwareKnowledgeMatches, getPolicyAwareKnowledgeSnippets } from './policy-aware-matcher.js'; 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