import type { ProjectType } from '../../utils/manifest.js'; interface WritePackageJsonProps { cwd: string; entryPoint?: string; template: string; type?: ProjectType; version: string; } export interface SkubaPackageJson { entryPoint: string | null; template: string; type?: string; version: string; } /** * Write a `skuba` section into the destination `package.json`. */ export declare const writePackageJson: ({ cwd, entryPoint, template, type, version, }: WritePackageJsonProps) => Promise; export {};