import { SocialPost, SocialStats, SocialResponse, UseSocialOptions } from '../types'; /** * React hook for fetching social media posts from connected integrations (Instagram, TikTok, etc.) with pagination, filtering, and stats */ export declare function useSocial(options?: UseSocialOptions): { fetchPosts: (customOptions?: UseSocialOptions) => Promise; reset: () => void; loading: boolean; error: string | null; posts: SocialPost[] | null; stats: SocialStats | null; total: number; limit: number; offset: number; }; //# sourceMappingURL=useSocial.d.ts.map