import { AIConfig } from "../types/PluginConfig";
export type AIField = "title" | "description" | "keywords";
export declare function generateSEOContent(field: AIField, bodyContent: string, focusKeyword: string, config: AIConfig): Promise<string>;
