/**
 * Finds potential entry points for a Mini Program project.
 * Includes app, pages, subPackages, and components found via usingComponents.
 *
 * @param projectRoot The absolute path to the root of the entire project.
 * @returns A promise resolving to an array of entry file paths relative to the projectRoot.
 */
export declare function findMiniProgramEntryPoints(projectRoot: string): Promise<string[]>;
