import { Command } from "@oclif/command"; export declare type PackageJSONFileContent = { dependencies: { [module: string]: string; }; }; export declare const packageJsonContainsModule: (content: PackageJSONFileContent, module: string) => boolean; export default abstract class LocalCommand extends Command { checks(): void; private checkIfInsideAMerlinGQLProject; private checkIfOrmConfigExists; }