import { Client } from '../../Client'; import { StaysAccommodationBrand } from '../StaysTypes'; import { Resource } from '../../Resource'; import { DuffelResponse } from '../../types'; export declare class Brands extends Resource { /** * Endpoint path */ path: string; constructor(client: Client); /** * Get a brand * @param {string} brandId - The ID of the brand */ get: (brandId: string) => Promise>; /** * List brands */ list: () => Promise>; }