import type { AIConfig } from '../../engine'; export declare const visionPlugin: { name: string; appliesTo: string[]; analyze(rowId: string | number, field: string, value: unknown, config: AIConfig): Promise<{ status: "error"; error: string; description?: undefined; tags?: undefined; dominantColors?: undefined; } | { status: "done"; description: string | undefined; tags: string[] | undefined; dominantColors: string[] | undefined; error?: undefined; }>; }; //# sourceMappingURL=VisionPlugin.d.ts.map