interface FeedbackProps { analytics?: { info: (entries: Record) => void; }; appName: string; buttonVariant?: 'secondary' | 'tertiary'; } declare const Feedback: ({ analytics, appName, buttonVariant, }: FeedbackProps) => React.JSX.Element; export { Feedback, type FeedbackProps };