type Platform = 'twitter' | 'linkedin' | 'reddit'; /** * Validate platform-specific content shape. * Returns null if valid, or an error message string if invalid. */ export declare function validatePostContent(platform: Platform, content: Record): string | null; export {};