import type { ResolvedProject } from '../models/project'; /** Arguments that may contain project resolution hints */ export interface CliArgs { project?: string; /** Additional flag names that may carry project */ [key: string]: unknown; } /** * Resolve the project from CLI arguments. * Passes --project flag to the resolver. */ export declare function resolveFromCLI(args: CliArgs): ResolvedProject; /** * Get the database path for a resolved project. */ export declare function getDbPath(project: ResolvedProject): string; //# sourceMappingURL=project-resolver.d.ts.map