import Xjs from "../xjs"; import { PropertyType, IItemInfo } from "./types"; declare class Item { private internal; constructor(config: Xjs); private getPlacements; private isCurrentItem; getItemList(srcid: string): Promise; getCurrentItem(): Promise; getLinkedItem(srcid: string): Promise; setProperty(prop: PropertyType, param: any): Promise; getProperty(prop: PropertyType, param: any): Promise; setConfiguration(config: Record, info: IItemInfo): void; getConfiguration(info: IItemInfo): Promise | string>; } export default Item;