import type { MemFsEditorFile } from 'mem-fs-editor'; import type { Options as PrettierOptions } from 'prettier'; import type { FileTransform, PipelineOptions } from 'mem-fs'; import BaseGenerator from '../base/index.js'; import type { GenericTaskGroup, TaskParamWithControl } from '../../lib/types/base/tasks.js'; export default class BootstrapGenerator extends BaseGenerator { [x: string]: any; static MULTISTEP_TRANSFORM: string; static PRE_CONFLICTS: string; upgradeCommand?: boolean; skipPrettier?: boolean; skipEslint?: boolean; skipForks?: boolean; prettierExtensions: string[]; prettierOptions: PrettierOptions; refreshOnCommit: boolean; constructor(args: any, options: any, features: any); beforeQueue(): Promise; get initializing(): GenericTaskGroup; get multistepTransform(): Record unknown | Promise>; get preConflicts(): GenericTaskGroup; queueMultistepTransform(): void; queueCommitPrettierConfig(): void; commitPrettierConfig(): Promise; commitTask(): Promise; commitSharedFs({ log, ...options }?: PipelineOptions & { log?: string; }, ...transforms: FileTransform[]): Promise; }