import type { EnrichedGameData } from '../seo/data-enrichment';
import type { PickDetails } from './types';
export interface BreakdownResult {
    blogPostId: number;
    blogUrl: string;
    pickId: number;
    tweetText: string;
}
/**
 * Standard tweet template for ALL pick-type tweets with backlinks.
 * Designed for X Premium (up to 25K chars).
 */
export declare function generatePickTweetWithBacklink(pick: PickDetails, blogUrl: string, enriched?: import('../seo/data-enrichment').EnrichedGameData): string;
export declare function orchestrateBreakdown(enriched: EnrichedGameData, pick: PickDetails): Promise<BreakdownResult | null>;
//# sourceMappingURL=blog-breakdown.d.ts.map