import type { Bubbles, BubblesCapture, BubblesCaptureComposed, BubblesComposed, Capture, CaptureComposed } from "../CustomEventsTag"; export type bubblesExpected = string | Bubbles; export type CapturePhaseExpected = Capture | null; export type BubblesCapturePhaseExpected = string | number | BubblesCapture; export type BubblesComposedExpected = "male" | "female" | BubblesComposed; export type CapturePhaseComposedExpected = string | 0 | 1 | 2 | null | CaptureComposed; export type BubblesCapturePhaseComposedExpected = boolean | BubblesCaptureComposed;