import type { Event } from '@amplitude/analytics-types'; import { Interfaces } from '@oclif/core'; export interface AnalyticsHook { event: Event; config: Interfaces.Config; identify?: boolean; } declare const hook: (options: AnalyticsHook) => Promise; export default hook;