import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Branding extends ClientSDK { /** * Create brand properties for the specified account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/branding.write` scope. */ create(request: operations.CreateBrandRequest, options?: RequestOptions): Promise; /** * Create or replace brand properties for the specified account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/branding.write` scope. */ upsert(request: operations.UpsertBrandRequest, options?: RequestOptions): Promise; /** * Get brand properties for the specified account. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/branding.read` scope. */ get(request: operations.GetBrandRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=branding.d.ts.map