import type { KnowledgeStore } from './store.js'; import type { KnowledgeIssueRecord } from './types.js'; import type { RuntimeEventBus } from '../runtime/events/index.js'; export interface KnowledgeLintContext { readonly store: KnowledgeStore; readonly emitIfReady: (fn: (bus: RuntimeEventBus, ctx: { readonly traceId: string; readonly sessionId: string; readonly source: string; }) => void, sessionId?: string) => void; } export declare function lintKnowledgeStore(context: KnowledgeLintContext): Promise; //# sourceMappingURL=lint.d.ts.map