import { APIResource } from "../core/resource.js"; import { APIPromise } from "../core/api-promise.js"; import { RequestOptions } from "../internal/request-options.js"; export declare class Brands extends APIResource { /** * Retrieve brand information by domain name * * Look up a brand by its domain name (e.g. "aloyoga.com" or "www.amazon.com"). * Returns brand information including the marketplace type if the lookup succeeds. */ retrieve(domain: string, options?: RequestOptions): APIPromise; } export interface BrandRetrieveResponse { /** * A unique identifier for the brand. */ id: string; /** * Indicates what ecommerce platform the brand uses. */ marketplace: 'AMAZON' | 'SHOPIFY' | 'BESTBUY' | 'SEPHORA' | 'UNKNOWN'; /** * If `false`, then products from this brand cannot be purchased through the Sell * Anything API. */ supported: boolean; } export declare namespace Brands { export { type BrandRetrieveResponse as BrandRetrieveResponse }; } //# sourceMappingURL=brands.d.ts.map