import type { StaticActivityComponentType } from "./BaseStaticActivityComponentType"; export type LazyActivityComponentType = StaticActivityComponentType & { _load?: () => Promise<{ default: StaticActivityComponentType }>; };