/** * Keyword extraction — no LLM, no latency, no cost. * * Strips stop words, extracts significant terms, deduplicates. * Extracted from idapixl-cortex/src/engines/keywords.ts. */ /** * Extract up to `max` meaningful keywords from text. * Returns lowercase, deduplicated terms of 3+ characters. */ export declare function extractKeywords(text: string, max?: number): string[]; //# sourceMappingURL=keywords.d.ts.map