import EcomClient from './index'; import { Category } from './category'; import { Price } from './price'; import { Image } from './image'; export declare class Product { client: EcomClient; id: string; path: string; sku: string; prices: Price[] | undefined; images: Image[] | undefined; name: string | undefined; created: Date | undefined; modified: Date | undefined; constructor(client: EcomClient, id: string, path: string, sku: string, name: string, created: Date, modified: Date); load(): Promise; categories(): Category[]; }