import type { Environment, Options } from './types.js'; export type PersistedOptions = Omit, 'addOns' | 'chosenAddOns' | 'framework' | 'starter' | 'targetDir'> & { framework: string; version: number; chosenAddOns: Array; starter?: string; }; export declare function writeConfigFileToEnvironment(environment: Environment, options: Options): Promise;