export interface AppBuildPlan { cwd: string; command: readonly string[]; } /** Resolve a checkout without teaching the globally installed CLI any App internals. */ export declare function planAppBuild(input: { root: string; profile?: string; api?: string; }): AppBuildPlan;