import { type EnsurePackageBundledContext } from '@ms-cloudpack/api-server'; import { type EvaluateImportsForOverridesOptions, type EvaluateImportsForOverridesResult } from './evaluateImportsForOverrides.js'; import type { InitAppOptions } from './types/InitAppOptions.js'; /** * A helper which given the packagePath, tries to evaluate the path by bundling things, finding imports, * and cross checking the imports with explicit exports. If any exports are missing, they are documented * in the generated config. */ export declare function evaluatePath(options: InitAppOptions & Pick & { shouldForce: boolean; /** The priority of the package being evaluated. To be used in the task runner. */ priority: number; }, ctx: EnsurePackageBundledContext): Promise> & { /** Whether a fatal error was encountered. */ shouldExit?: boolean; }>; //# sourceMappingURL=evaluatePath.d.ts.map