import type { Manifest } from '@vltpkg/types'; import type { PathBase, PathScurry } from 'path-scurry'; export type ProjectTools = 'vlt' | 'node' | 'deno' | 'bun' | 'npm' | 'pnpm' | 'yarn' | 'js'; export declare const isProjectTools: (str: string) => str is ProjectTools; export declare const asProjectTools: (str: string) => ProjectTools; export declare const inferTools: (manifest: Pick & Record, folder: PathBase, scurry: PathScurry) => ProjectTools[]; //# sourceMappingURL=project-tools.d.ts.map