import { type DesignInventory } from "../design/inventory.js"; import { type Parsed } from "../util.js"; import type { ResolvedConfig } from "../types.js"; /** The human view. Paths are absolute where they are meant to be opened. */ export declare function renderInventory(resolved: ResolvedConfig, inv: DesignInventory): string; export declare function designSystem(parsed: Parsed): Promise;