import { Bundle } from "@createdreamtech/carti-core"; import { Listing } from './bundle_listing'; interface Index { [k: string]: Bundle[]; } interface OriginIndex { [k: string]: string[]; } interface Indices { name: Index; id: Index; origin: OriginIndex; } export declare class GlobalIndex { indices: Indices; getList: () => Promise