import { type WorldPatch } from '@bitmagic/asset-core'; export interface ApplyOutcome { applied: number; /** One human-readable line per patch, for the command to print. */ summary: string[]; } export declare function applyPatchesToWorld(worldPath: string, patches: WorldPatch[]): ApplyOutcome;