import type { AIConfig } from '../../engine'; export declare const richTextPlugin: { name: string; appliesTo: string[]; analyze(rowId: string | number, field: string, value: unknown, config: AIConfig, ctx: import("../..").AIAnalyzeContext | undefined): Promise<{ status: "error"; error: string; summary?: undefined; sentiment?: undefined; keyPhrases?: undefined; } | { status: "done"; summary: string | undefined; sentiment: "positive" | "negative" | "neutral" | undefined; keyPhrases: string[] | undefined; error?: undefined; }>; }; //# sourceMappingURL=RichTextPlugin.d.ts.map