import { PackageManager } from '@nx/devkit'; export interface GenericSubstitutions { anchor: string; anchorName: string; anchorProgram: string; licenseAuthor?: string; name: string; npmScope: string; preset?: 'next' | 'react'; } export declare function genericSubstitutions({ licenseAuthor, anchor, anchorName, anchorProgram, name, npmScope, preset, }: GenericSubstitutions, pm?: PackageManager): { licenseAuthor: string; anchor: { name: string; className: string; propertyName: string; constantName: string; fileName: string; }; anchorName: { name: string; className: string; propertyName: string; constantName: string; fileName: string; }; anchorProgram: { name: string; className: string; propertyName: string; constantName: string; fileName: string; }; npmScope: string; currentFullYear: number; preset: "next" | "react"; runCmd: string; pm: PackageManager; name: string; className: string; propertyName: string; constantName: string; fileName: string; };