import { CartiConfigStorage } from "../storage"; import { Fetcher } from "../fetcher"; export declare class Repo { cgs: CartiConfigStorage; fetcher: Fetcher; constructor(cgs: CartiConfigStorage, fetcher: Fetcher); resolveBundles(path: string): Promise; add(uri: string): Promise; list(): Promise; has(uri: string): Promise; rm(uri: string): Promise; update(uri?: string): Promise; updateAll(): Promise; }