export interface SocialPlatformPosts { instagram?: string; facebook?: string; tiktok?: string; youtube?: string; linkedin?: string; threads?: string; twitter?: string; kwai?: string; } export type SMAContentType = 'reel' | 'post' | 'carousel'; export type SMATopicStatus = 'suggested' | 'approved' | 'generating' | 'ready' | 'published' | 'rejected' | 'failed'; export type SMAPostStatus = 'scheduled' | 'publishing' | 'published' | 'failed'; export type SMAAccountStatus = 'pending' | 'active' | 'suspended'; export type SMANiche = string; export type SMAAccountSetupStep = 'instagram' | 'avatar' | 'schedule';