import type { Entrypoint } from '@modern-js/types'; import type { AppNormalizedConfig } from '../../types'; import type { AppToolsContext, AppToolsHooks } from '../../types/plugin'; export type { Entrypoint }; export declare const hasEntry: (dir: string) => string | false; export declare const hasServerEntry: (dir: string) => string | false; export declare const getFileSystemEntry: (hooks: AppToolsHooks, appContext: AppToolsContext, config: AppNormalizedConfig) => Promise;