import { QlikSaaSClient } from "qlik-rest-api";
export declare class BrandActions {
    #private;
    constructor(saasClient: QlikSaaSClient, id: string);
    /**
     * Sets the brand active and de-activates any other active brand.
     * If the brand is already active, no action is taken.
     */
    activate(): Promise<number>;
    /**
     * Sets the brand so it is no longer active.
     * If the brand is already inactive, no action is taken.
     */
    deactivate(): Promise<number>;
}
