import type { ProjectType } from '../../utils/manifest.js'; import type { TemplateConfig } from '../../utils/template.js'; import type { ReadResult } from './types.js'; interface Props { destinationRoot: string; manifest: ReadResult; templateConfig: TemplateConfig; type: ProjectType; } export declare const getEntryPoint: ({ destinationRoot, manifest, templateConfig, type, }: Props) => Promise; export {};