import { IToMarkdown } from "../markdown/markdown"; import ShopItem from "./ShopItem"; export default class Inventory implements IToMarkdown { readonly items: ShopItem[]; constructor(items: ShopItem[]); toMarkdown(): string; }