import { CourierBrand } from '../types/brands';
import { Client } from './client';
export declare class BrandClient extends Client {
    /**
     * Get a brand by ID using GraphQL
     * @param brandId - The ID of the brand to retrieve
     * @returns Promise resolving to the requested brand
     */
    getBrand(props: {
        brandId: string;
    }): Promise<CourierBrand>;
}
