import { SpawnSyncOptions } from 'child_process'; import { UVLockfile } from './types'; import { Tree } from '@nx/devkit'; export declare const UV_EXECUTABLE = "uv"; export declare function checkUvExecutable(): Promise; export type RunUvOptions = { log?: boolean; error?: boolean; } & SpawnSyncOptions; export declare function runUv(args: string[], options?: RunUvOptions): void; export declare function getUvVersion(): string; export declare function getUvLockfile(lockfilePath: string, tree?: Tree): UVLockfile | null; //# sourceMappingURL=utils.d.ts.map