export type DynamicImportType = MightNotExist extends true ? (() => Promise<{ default: T; }>) | undefined : () => Promise<{ default: T; }>;