import { type Compiler, FileSystem, type Package } from '@servicenow/sdk-build-core'; export declare function createPackageJson({ rootDir, compiler, fileSystem, }: { rootDir: string; compiler: Compiler; fileSystem: FileSystem; }): Package; export declare function getPackageJsonFilePath(rootDir: string): string; /** * Validates the package name according to the npm package naming conventions. */ export declare function validatePackageName(name: string): void;