import type { WorldOpts } from '../schemas/options'; import type { PlanItem } from '../schemas/plan'; /** * Generates a themed world asset pack - returns generated asset data. */ export declare function generateWorldPack(rawOpts: WorldOpts): Promise; /** * CLI wrapper for world pack generation - includes progress logging and file saving. */ export declare function generateWorldPackCLI(rawOpts: WorldOpts): Promise;