import type { IPrettierOptions } from './tools'; export type IGenPackageJsonOpts = { genFilePath: string; prettierOptions?: IPrettierOptions; }; export declare class GenPackageJson { private readonly opts; constructor(opts: IGenPackageJsonOpts); generator(): Promise; private writeFile; }