export interface FeedgetConfig { apiKey: string; apiUrl?: string; orientation?: "left" | "right"; metadata?: { userId?: string; version?: string; custom?: Record; }; } export declare const Feedget: { init(config: FeedgetConfig): void; destroy(): void; updateConfig(config: Partial): void; };