import type { MonolithicActivityComponentType } from "./MonolithicActivityComponentType"; import type { StructuredActivityComponentType } from "./StructuredActivityComponentType"; export type ActivityComponentType = | MonolithicActivityComponentType | StructuredActivityComponentType;