import EcomClient from '../index'; import { UserCollectionReference } from './user'; import { DeveloperKeyCollectionReference } from './developer-key'; import { ProductCollectionReference } from './product'; import { CategoryCollectionReference } from './category'; import { CategoryTreeDocumentReference } from './category-tree'; import { ProductCategoryCollectionReference } from './product-category'; import { PriceListCollectionReference } from './price-list'; import { ImageCollectionReference } from './image'; export declare class Db { _ecom: EcomClient; private _rootCollections; constructor(ecom: EcomClient); readonly users: UserCollectionReference; readonly developerKeys: DeveloperKeyCollectionReference; readonly products: ProductCollectionReference; readonly images: ImageCollectionReference; readonly categories: CategoryCollectionReference; readonly categoryTree: CategoryTreeDocumentReference; readonly productCategory: ProductCategoryCollectionReference; readonly priceLists: PriceListCollectionReference; }