import { type AssetDependencyAlias } from '../schemas.js'; export interface ListCommandOptions { cwd?: string; } export interface InstalledAssetListing { name: string; range: string; /** Canonical install path → the project's current path (a rename) or `false` (a tombstone: * the file is intentionally not installed). */ alias: AssetDependencyAlias; } export interface ListInstalledAssetsResult { projectRoot: string; packageJsonPath: string; assets: InstalledAssetListing[]; } export declare function listCommand(opts: ListCommandOptions): Promise; /** The project's declared asset dependencies — package.json is the single source of truth. */ export declare function listInstalledAssets(cwd: string | undefined): Promise; //# sourceMappingURL=list.d.ts.map