export interface FeedgetConfig { apiKey: string; apiUrl?: string; orientation?: "left" | "right"; metadata?: { userId?: string; version?: string; custom?: Record; }; } export declare class FeedgetWidgetAngular { constructor(config: FeedgetConfig); mount(containerElement?: HTMLElement): void; unmount(): void; updateConfig(newConfig: Partial): void; } export declare function createFeedgetWidget(config: FeedgetConfig): FeedgetWidgetAngular;