import { type ProjectSnapshot } from '@pnpm/lockfile.fs'; import { type TreeNodeId } from './TreeNodeId.js'; export interface getTreeNodeChildIdOpts { readonly parentId: TreeNodeId; readonly dep: { readonly alias: string; readonly ref: string; }; readonly lockfileDir: string; readonly importers: Record; } export declare function getTreeNodeChildId(opts: getTreeNodeChildIdOpts): TreeNodeId | undefined;