import type { WizardState } from '../types.js'; export interface ApplyResult { filesWritten: string[]; symlinksCreated: string[]; errors: string[]; warnings: string[]; skipped: string[]; } export declare function applyState(state: WizardState): Promise;