/**
 * @class
 * @description Object that stores the plugin settings.
 * @exports BalancerOptions
 */
export default class BalancerOptions {
    profileName?: string;
    bucketName?: string;
    isLive?: boolean;
    videoId?: string;
    resource?: string;
    updateTime?: number;
    reportTime?: number;
    debug?: boolean;
    isDev?: boolean;
    timeBetweenHeads?: number;
    host?: string;
    forceDecisionCall?: boolean;
    /**
     * Constructs options object.
     * @param {constructionOptions} options JSON with the options to construct the balancer.
     */
    constructor(options?: constructionOptions);
}
