export declare class EcomError extends Error { readonly status: number; readonly code: string; constructor(status: number, code: string, message?: string | undefined); } export declare enum ApiErrorResponseCodes { ProductsPathExists = "products/product-path-exists" }