import type { FC } from 'react'; export type FeedbackType = "BUG" | "IDEA" | "OTHER"; export interface FeedgetWidgetProps { apiKey: string; apiUrl?: string; orientation?: "left" | "right"; metadata?: { userId?: string; version?: string; custom?: Record; }; } export interface FeedgetConfig { apiKey: string; apiUrl?: string; orientation?: "left" | "right"; metadata?: { userId?: string; version?: string; custom?: Record; }; } export const FeedgetWidget: FC; export function initFeedget(config: FeedgetConfig): any; export function getFeedgetInstance(): any;