import type Builder from './Builder'; import AppEntry from './entries/AppEntry'; import ComponentEntry from './entries/ComponentEntry'; import NativeEntry from './entries/NativeEntry'; import NormalEntry from './entries/NormalEntry'; import PageEntry from './entries/PageEntry'; type Entries = Map; export default class EntryCollection { builder: Builder; appEntry?: AppEntry | NativeEntry | null; mainEntry: NormalEntry | null; nativeComponentEntries: Map; entries: Entries; constructor(builder: Builder); init(): void; private initAppEntry; private initMainEntry; private initEntries; private isNativeEntry; private isNativeApp; } export {};