///
import { NpmCommand } from '../interfaces/npm-controller.interface';
import type PackageJson from '@npmcli/package-json';
type PackageJsonContent = PackageJson['content'];
interface GetVueOverrideOptions {
content: PackageJsonContent;
deps: string[];
npmCommand: NpmCommand;
}
export declare function getVueOverride({ content, deps, npmCommand }: GetVueOverrideOptions): Record | null;
export {};