import { RecognizerResult } from './types.js'; /** * NER-based recognizer using transformers.js */ export declare class NERRecognizer { private nerPipeline; private modelName; constructor(modelName?: string); /** * Initialize the NER pipeline */ initialize(): Promise; /** * Map NER entity types to our EntityType enum */ private mapEntityType; /** * Recognize entities using NER model */ recognize(text: string): Promise; } //# sourceMappingURL=nerRecognizer.d.ts.map