import { useInsights } from './hooks/useInsights'
import { FeedbackForm } from './components/FeedbackForm'
import type { Translations, Style } from './components/FeedbackForm'
import type { IconItem } from './components/constants'

export function test(a: string): Promise<string> {
  return Promise.resolve('we-use-insights package is working properly' + a)
}

export { useInsights, FeedbackForm }
export type { Translations, Style, IconItem }
