import type { CLIPluginAPI } from '@modern-js/plugin'; import type { AppTools } from '../types'; import type { InfoOptions } from '../utils/types'; export interface EntryInfo { entryName: string; isMainEntry: boolean; entry: string; isAutoMount: boolean; isCustomSourceEntry: boolean; customEntry: boolean; ssr: boolean | 'stream' | 'string'; ssg: boolean; } export interface ProjectInfo { entries: EntryInfo[]; apiOnly: boolean; } export declare const info: (api: CLIPluginAPI, options?: InfoOptions) => Promise;