import VintedUserType from "../types/VintedUserType.js"; import VintedItemType from "../types/VintedItemType.js"; export default class VintedItem { info: VintedItemType; user: VintedUserType | undefined; private initialized; constructor(data: any); initialize(searchUrl: string): Promise<"rateLimit" | VintedItemType>; }