type FBEventType = { eventName: string; eventId?: string; emails?: Array | null; phones?: Array | null; firstName?: string; lastName?: string; country?: string; city?: string; zipCode?: string; products?: { sku: string; quantity: number; }[]; value?: number; currency?: string; enableStandardPixel?: boolean; testEventCode?: string; }; export default FBEventType;