import type { EnrichedGameData } from '../seo/data-enrichment';
import type { PickDetails } from './types';
export interface BreakdownGrokResponse {
    title: string;
    meta_description: string;
    h1: string;
    excerpt: string;
    quick_facts: {
        label: string;
        value: string;
    }[];
    content: string;
    faq_schema: {
        question: string;
        answer: string;
    }[];
    data_tables: Record<string, unknown>;
}
/**
 * Builds the Grok prompt for a pick breakdown blog post.
 */
export declare function buildBreakdownPrompt(enriched: EnrichedGameData, pick: PickDetails): string;
/**
 * Calls Grok for breakdown content with higher token limit.
 */
export declare function callGrokForBreakdown(prompt: string): Promise<BreakdownGrokResponse | null>;
//# sourceMappingURL=breakdown-prompts.d.ts.map